├── .gitignore ├── LICENSE ├── README.md ├── WebKitDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── WebKitDemo ├── AppDelegate.swift ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── SceneDelegate.swift ├── WebViewController.swift └── WebViewProgressView.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmihara/WebKitDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmihara/WebKitDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmihara/WebKitDemo/HEAD/README.md -------------------------------------------------------------------------------- /WebKitDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmihara/WebKitDemo/HEAD/WebKitDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WebKitDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmihara/WebKitDemo/HEAD/WebKitDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WebKitDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmihara/WebKitDemo/HEAD/WebKitDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /WebKitDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmihara/WebKitDemo/HEAD/WebKitDemo/AppDelegate.swift -------------------------------------------------------------------------------- /WebKitDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmihara/WebKitDemo/HEAD/WebKitDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /WebKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmihara/WebKitDemo/HEAD/WebKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WebKitDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmihara/WebKitDemo/HEAD/WebKitDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WebKitDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmihara/WebKitDemo/HEAD/WebKitDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /WebKitDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmihara/WebKitDemo/HEAD/WebKitDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WebKitDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmihara/WebKitDemo/HEAD/WebKitDemo/Info.plist -------------------------------------------------------------------------------- /WebKitDemo/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmihara/WebKitDemo/HEAD/WebKitDemo/SceneDelegate.swift -------------------------------------------------------------------------------- /WebKitDemo/WebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmihara/WebKitDemo/HEAD/WebKitDemo/WebViewController.swift -------------------------------------------------------------------------------- /WebKitDemo/WebViewProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmihara/WebKitDemo/HEAD/WebKitDemo/WebViewProgressView.swift --------------------------------------------------------------------------------