WebView causes application to crash
A WebView causes my application to crash. I haven't found anything on this problem by googling.
I have a tableView which I'm adding a click-event on:
RSS.oTable.addEventListener("click", RSS.showItem);
The RSS.showItem
:
showItem: function(e) {
var oData = e.row.axjData;
var oSubWin = Titanium.UI.createWindow({
title: oData.title,
backgroundColor:"#fff"
});
var oWebview = Titanium.UI.createWebView({
url:'http://www.appcelerator.com'
});
//oSubWin.add(oWebview);
Titanium.UI.currentTab.open(oSubWin);
}
Works fine without WebView. The WebView causes the following error & stack trace:
http://gist.github.com/653217
Any ideas or suggestions?
1 Answer
-
This solved it for me.
Basically, delete your build folder and rebuild again.