iOS Question Webview not loading

Andre Souza

Member
Licensed User
Any page that I try to load, always and get a blank page

B4X:
Private Sub Application_Start (Nav As NavigationController)
    NavControl = Nav
    Page1.Initialize("Page1")
    Page1.Title = "Page 1"
    NavControl.ToolBarVisible = False
    NavControl.NavigationBarVisible = False
    NavControl.ShowPage(Page1)
    Page1.RootPanel.LoadLayout("web")
    WebView1.LoadUrl("http://www.google.com")
End Sub
 

Attachments

  • demo_webview.zip
    2 KB · Views: 200
Top