Reproduce:
1. Create a default mobile project
2. add following code to app.js
var win = Ti.UI.createWindow({
backgroundColor:'white'
});
var webview = Titanium.UI.createWebView({url:'voyasso.html',ignoreSslError :true});
win.add(webview);
win.open();
3. add the following html page to project (Moved into comment as it contain sensitive info)
4. Run the project on iOS device or simulator
Actual Result:
(Check statement as it might contain sensitive info)
Expected Result:
Since the APT is false in default, the url should load up.
Closing based on feedback from [~sliang].