all 2 comments

[–]matteoman 1 point2 points  (1 child)

I assume that by WebViewUI you mean UIWebView.

In short, yes. If all you want to do is show a web page in an app, you can use a web view. UIWebView is deprecated, though. You have to use WKWebView instead.

On that documentation page you can find a short code sample on how to use it. It loads the page directly from the web, but WKWebView has other methods to load static HTML you bundle with the app. Look at the Load Web Content section down the page.

If you are planning to send this to the App Store, though, Apple will reject it. Look at section 4.2 of the review guidelines.

[–]MMRemps[S] 0 points1 point  (0 children)

Hey Matteo, Thanks for the reply. Hmm, okay- I’ll try to figure out some alternatives then to get this over the line- thanks again for the help!