simple webview app ?

You must Login before you can answer or comment on any questions.

Hi, i'm trying acces to web, but i want to do it in the application. not open the navigator (on ipad)

Where can i find a simple app who can help me ? How i can do that ?

1 Answer

Take a look at the code in the Titanium.UI.WebView docs:

var webview = Titanium.UI.createWebView({url:'http://www.appcelerator.com'});
    var window = Titanium.UI.createWindow();
    window.add(webview);
    window.open({modal:true});

Your Answer

Think you can help? Login to answer this question!