├── GettingStartedWithSafariViewController.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── jordanmorgan.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── GettingStartedWithSafariViewController.xcscheme │ └── xcschememanagement.plist ├── GettingStartedWithSafariViewController ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CustomWebViewController.swift ├── Info.plist └── ViewController.swift └── README.md /GettingStartedWithSafariViewController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/iOS-SafariViewControllerStarterProject/HEAD/GettingStartedWithSafariViewController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GettingStartedWithSafariViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/iOS-SafariViewControllerStarterProject/HEAD/GettingStartedWithSafariViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GettingStartedWithSafariViewController.xcodeproj/xcuserdata/jordanmorgan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/iOS-SafariViewControllerStarterProject/HEAD/GettingStartedWithSafariViewController.xcodeproj/xcuserdata/jordanmorgan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /GettingStartedWithSafariViewController.xcodeproj/xcuserdata/jordanmorgan.xcuserdatad/xcschemes/GettingStartedWithSafariViewController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/iOS-SafariViewControllerStarterProject/HEAD/GettingStartedWithSafariViewController.xcodeproj/xcuserdata/jordanmorgan.xcuserdatad/xcschemes/GettingStartedWithSafariViewController.xcscheme -------------------------------------------------------------------------------- /GettingStartedWithSafariViewController.xcodeproj/xcuserdata/jordanmorgan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/iOS-SafariViewControllerStarterProject/HEAD/GettingStartedWithSafariViewController.xcodeproj/xcuserdata/jordanmorgan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /GettingStartedWithSafariViewController/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/iOS-SafariViewControllerStarterProject/HEAD/GettingStartedWithSafariViewController/AppDelegate.swift -------------------------------------------------------------------------------- /GettingStartedWithSafariViewController/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/iOS-SafariViewControllerStarterProject/HEAD/GettingStartedWithSafariViewController/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GettingStartedWithSafariViewController/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/iOS-SafariViewControllerStarterProject/HEAD/GettingStartedWithSafariViewController/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /GettingStartedWithSafariViewController/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/iOS-SafariViewControllerStarterProject/HEAD/GettingStartedWithSafariViewController/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GettingStartedWithSafariViewController/CustomWebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/iOS-SafariViewControllerStarterProject/HEAD/GettingStartedWithSafariViewController/CustomWebViewController.swift -------------------------------------------------------------------------------- /GettingStartedWithSafariViewController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/iOS-SafariViewControllerStarterProject/HEAD/GettingStartedWithSafariViewController/Info.plist -------------------------------------------------------------------------------- /GettingStartedWithSafariViewController/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/iOS-SafariViewControllerStarterProject/HEAD/GettingStartedWithSafariViewController/ViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/iOS-SafariViewControllerStarterProject/HEAD/README.md --------------------------------------------------------------------------------