iOS
This document provides instructions to create a WebView into an iOS project.
iOS Info.plist
<key>NSCameraUsageDescription</key>
<string>Camera Permission</string>
<key>NSMotionUsageDescription</key>
<string>Motion Permission</string>iOS WebView (Swift)
AppDelegate
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
window = UIWindow(frame: UIScreen.main.bounds)
window?.rootViewController = WebViewController()
window?.makeKeyAndVisible()
return true
}
}SceneDelegate
WebViewController
Last updated

