Hello,
I create a simple layer with buttons, imageviewer with Visual Designer. The same code works with B4A but I don't now why with IOS don't work. I try WebView1.LoadURL and WebView1.LoadHtml. I can see the buttons, the image but the webviewer don't show anything.
Thanks
I create a simple layer with buttons, imageviewer with Visual Designer. The same code works with B4A but I don't now why with IOS don't work. I try WebView1.LoadURL and WebView1.LoadHtml. I can see the buttons, the image but the webviewer don't show anything.
B4X:
Private WebView1 As WebView
Private Sub Application_Start (Nav As NavigationController)
NavControl = Nav
Page1.Initialize("Vista_web")
Page1.Title = "Lectura"
Page1.RootPanel.LoadLayout("vista_web")
Page1.RootPanel.Color = Colors.White
NavControl.ShowPage(Page1)
WebView1.Initialize("webview1")
WebView1.LoadHtml("http://www.google.com")
End Sub
Sub WebView1_Click
WebView1.LoadURL ("http://www.google.com")
End Sub
End Sub
Thanks