├── .gitignore ├── HackingSFViewController.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── stringCode.xcuserdatad │ └── xcschemes │ ├── HackingSFViewController.xcscheme │ └── xcschememanagement.plist ├── HackingSFViewController ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── shadow.imageset │ │ ├── Contents.json │ │ └── shadow@2x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── SCModalPushPopAnimator.swift ├── SCSafariViewController.swift └── ViewController.swift ├── LICENSE.md ├── README.md └── SCSafariViewController.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/.gitignore -------------------------------------------------------------------------------- /HackingSFViewController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/HackingSFViewController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HackingSFViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/HackingSFViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HackingSFViewController.xcodeproj/xcuserdata/stringCode.xcuserdatad/xcschemes/HackingSFViewController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/HackingSFViewController.xcodeproj/xcuserdata/stringCode.xcuserdatad/xcschemes/HackingSFViewController.xcscheme -------------------------------------------------------------------------------- /HackingSFViewController.xcodeproj/xcuserdata/stringCode.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/HackingSFViewController.xcodeproj/xcuserdata/stringCode.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HackingSFViewController/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/HackingSFViewController/AppDelegate.swift -------------------------------------------------------------------------------- /HackingSFViewController/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/HackingSFViewController/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HackingSFViewController/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/HackingSFViewController/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HackingSFViewController/Assets.xcassets/shadow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/HackingSFViewController/Assets.xcassets/shadow.imageset/Contents.json -------------------------------------------------------------------------------- /HackingSFViewController/Assets.xcassets/shadow.imageset/shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/HackingSFViewController/Assets.xcassets/shadow.imageset/shadow@2x.png -------------------------------------------------------------------------------- /HackingSFViewController/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/HackingSFViewController/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HackingSFViewController/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/HackingSFViewController/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HackingSFViewController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/HackingSFViewController/Info.plist -------------------------------------------------------------------------------- /HackingSFViewController/SCModalPushPopAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/HackingSFViewController/SCModalPushPopAnimator.swift -------------------------------------------------------------------------------- /HackingSFViewController/SCSafariViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/HackingSFViewController/SCSafariViewController.swift -------------------------------------------------------------------------------- /HackingSFViewController/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/HackingSFViewController/ViewController.swift -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/README.md -------------------------------------------------------------------------------- /SCSafariViewController.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringcode86/SCSafariViewController/HEAD/SCSafariViewController.gif --------------------------------------------------------------------------------