├── .gitignore ├── README.md ├── Simple Universal Webview App.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── nfrmn.xcuserdatad │ └── xcschemes │ ├── Simple Universal Webview App.xcscheme │ └── xcschememanagement.plist ├── Simple Universal Webview App ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── ViewController.swift └── web_content ├── Simple Universal Webview AppTests └── Info.plist └── www └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | **/*.DS_Store 2 | xcuserdata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabilfreeman/ios-universal-webview-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /Simple Universal Webview App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabilfreeman/ios-universal-webview-boilerplate/HEAD/Simple Universal Webview App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Simple Universal Webview App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabilfreeman/ios-universal-webview-boilerplate/HEAD/Simple Universal Webview App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Simple Universal Webview App.xcodeproj/xcuserdata/nfrmn.xcuserdatad/xcschemes/Simple Universal Webview App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabilfreeman/ios-universal-webview-boilerplate/HEAD/Simple Universal Webview App.xcodeproj/xcuserdata/nfrmn.xcuserdatad/xcschemes/Simple Universal Webview App.xcscheme -------------------------------------------------------------------------------- /Simple Universal Webview App.xcodeproj/xcuserdata/nfrmn.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabilfreeman/ios-universal-webview-boilerplate/HEAD/Simple Universal Webview App.xcodeproj/xcuserdata/nfrmn.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Simple Universal Webview App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabilfreeman/ios-universal-webview-boilerplate/HEAD/Simple Universal Webview App/AppDelegate.swift -------------------------------------------------------------------------------- /Simple Universal Webview App/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabilfreeman/ios-universal-webview-boilerplate/HEAD/Simple Universal Webview App/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Simple Universal Webview App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabilfreeman/ios-universal-webview-boilerplate/HEAD/Simple Universal Webview App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Simple Universal Webview App/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabilfreeman/ios-universal-webview-boilerplate/HEAD/Simple Universal Webview App/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Simple Universal Webview App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabilfreeman/ios-universal-webview-boilerplate/HEAD/Simple Universal Webview App/Info.plist -------------------------------------------------------------------------------- /Simple Universal Webview App/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabilfreeman/ios-universal-webview-boilerplate/HEAD/Simple Universal Webview App/ViewController.swift -------------------------------------------------------------------------------- /Simple Universal Webview App/web_content: -------------------------------------------------------------------------------- 1 | ../www -------------------------------------------------------------------------------- /Simple Universal Webview AppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabilfreeman/ios-universal-webview-boilerplate/HEAD/Simple Universal Webview AppTests/Info.plist -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nabilfreeman/ios-universal-webview-boilerplate/HEAD/www/index.html --------------------------------------------------------------------------------