├── ChangeOrientation.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── harvey.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── harvey.xcuserdatad │ └── xcschemes │ ├── ChangeOrientation.xcscheme │ └── xcschememanagement.plist ├── ChangeOrientation ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── BaseNavigationController.h ├── BaseNavigationController.m ├── GuideViewController.h ├── GuideViewController.m ├── Info.plist ├── MainViewController.h ├── MainViewController.m ├── index.html ├── main.m └── performance.gif └── README.md /ChangeOrientation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChangeOrientation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ChangeOrientation.xcodeproj/project.xcworkspace/xcuserdata/harvey.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation.xcodeproj/project.xcworkspace/xcuserdata/harvey.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ChangeOrientation.xcodeproj/xcuserdata/harvey.xcuserdatad/xcschemes/ChangeOrientation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation.xcodeproj/xcuserdata/harvey.xcuserdatad/xcschemes/ChangeOrientation.xcscheme -------------------------------------------------------------------------------- /ChangeOrientation.xcodeproj/xcuserdata/harvey.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation.xcodeproj/xcuserdata/harvey.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ChangeOrientation/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation/AppDelegate.h -------------------------------------------------------------------------------- /ChangeOrientation/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation/AppDelegate.m -------------------------------------------------------------------------------- /ChangeOrientation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ChangeOrientation/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ChangeOrientation/BaseNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation/BaseNavigationController.h -------------------------------------------------------------------------------- /ChangeOrientation/BaseNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation/BaseNavigationController.m -------------------------------------------------------------------------------- /ChangeOrientation/GuideViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation/GuideViewController.h -------------------------------------------------------------------------------- /ChangeOrientation/GuideViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation/GuideViewController.m -------------------------------------------------------------------------------- /ChangeOrientation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation/Info.plist -------------------------------------------------------------------------------- /ChangeOrientation/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation/MainViewController.h -------------------------------------------------------------------------------- /ChangeOrientation/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation/MainViewController.m -------------------------------------------------------------------------------- /ChangeOrientation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation/index.html -------------------------------------------------------------------------------- /ChangeOrientation/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation/main.m -------------------------------------------------------------------------------- /ChangeOrientation/performance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/ChangeOrientation/performance.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/ChangeOrientation/HEAD/README.md --------------------------------------------------------------------------------