├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── STKWebKitViewController.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── STKWebKitViewController.xcscheme ├── STKWebKitViewController.xcworkspace │ └── contents.xcworkspacedata ├── STKWebKitViewController │ ├── Base.lproj │ │ ├── Main_iPad.storyboard │ │ └── Main_iPhone.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── STKAppDelegate.h │ ├── STKAppDelegate.m │ ├── STKViewController.h │ ├── STKViewController.m │ ├── STKWebKitViewController-Info.plist │ ├── STKWebKitViewController-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Pod ├── Assets │ ├── .gitkeep │ ├── back.png │ ├── back@2x.png │ ├── forward.png │ └── forward@2x.png └── Classes │ ├── .gitkeep │ ├── STKWebKitModalViewController.h │ ├── STKWebKitModalViewController.m │ ├── STKWebKitViewController.h │ └── STKWebKitViewController.m ├── README.md └── STKWebKitViewController.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/STKWebKitViewController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/STKWebKitViewController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/STKWebKitViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/STKWebKitViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/STKWebKitViewController.xcodeproj/xcshareddata/xcschemes/STKWebKitViewController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/STKWebKitViewController.xcodeproj/xcshareddata/xcschemes/STKWebKitViewController.xcscheme -------------------------------------------------------------------------------- /Example/STKWebKitViewController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/STKWebKitViewController.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/STKWebKitViewController/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/STKWebKitViewController/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Example/STKWebKitViewController/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/STKWebKitViewController/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Example/STKWebKitViewController/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/STKWebKitViewController/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/STKWebKitViewController/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/STKWebKitViewController/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/STKWebKitViewController/STKAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/STKWebKitViewController/STKAppDelegate.h -------------------------------------------------------------------------------- /Example/STKWebKitViewController/STKAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/STKWebKitViewController/STKAppDelegate.m -------------------------------------------------------------------------------- /Example/STKWebKitViewController/STKViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/STKWebKitViewController/STKViewController.h -------------------------------------------------------------------------------- /Example/STKWebKitViewController/STKViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/STKWebKitViewController/STKViewController.m -------------------------------------------------------------------------------- /Example/STKWebKitViewController/STKWebKitViewController-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/STKWebKitViewController/STKWebKitViewController-Info.plist -------------------------------------------------------------------------------- /Example/STKWebKitViewController/STKWebKitViewController-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/STKWebKitViewController/STKWebKitViewController-Prefix.pch -------------------------------------------------------------------------------- /Example/STKWebKitViewController/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/STKWebKitViewController/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/STKWebKitViewController/main.m -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Assets/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Pod/Assets/back.png -------------------------------------------------------------------------------- /Pod/Assets/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Pod/Assets/back@2x.png -------------------------------------------------------------------------------- /Pod/Assets/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Pod/Assets/forward.png -------------------------------------------------------------------------------- /Pod/Assets/forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Pod/Assets/forward@2x.png -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/STKWebKitModalViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Pod/Classes/STKWebKitModalViewController.h -------------------------------------------------------------------------------- /Pod/Classes/STKWebKitModalViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Pod/Classes/STKWebKitModalViewController.m -------------------------------------------------------------------------------- /Pod/Classes/STKWebKitViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Pod/Classes/STKWebKitViewController.h -------------------------------------------------------------------------------- /Pod/Classes/STKWebKitViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/Pod/Classes/STKWebKitViewController.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/README.md -------------------------------------------------------------------------------- /STKWebKitViewController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sticksen/STKWebKitViewController/HEAD/STKWebKitViewController.podspec --------------------------------------------------------------------------------