iOS Question View a Webpage inside an app

tomraffaele

New Member
Licensed User
Longtime User
I did an app in B4A for Google that brings up the web page.

Code below it works like a charm using Webview

Activity.LoadLayout("Layout1")

WebView1.LoadUrl("https://www.test.com")


I brought a mac notebook and got my certs and app setup for them

Does the ioS have a library like B4A webview on the iphone to view a page without it jumping into safari

I know I prob have to have it https instead of http

Can someone send me an example of how to load web page inside an app on the iphone?

Thanks Tommy
 

TSW2017

Member
Licensed User
I used this code:

WebView1.LoadHtml(File.ReadString(File.DirAssets, "Mybanner.html")

I created Mybanner.html with this code inside:
<html><body><img src="Mygif.gif" /></body></html>


I hope it can help you the community
 
Upvote 0
Top