├── .gitignore ├── Demo ├── Demo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Demo.xcscheme └── Demo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Demo-Info.plist │ ├── Demo-Prefix.pch │ ├── FixedOverlayManager.h │ ├── FixedOverlayManager.m │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ ├── lenna.png │ └── main.m ├── LICENSE ├── MotionOrientation.podspec ├── Package.swift ├── README.md └── Sources └── MotionOrientation ├── MotionOrientation.h └── MotionOrientation.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Demo/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/xcshareddata/xcschemes/Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Demo/Demo.xcodeproj/xcshareddata/xcschemes/Demo.xcscheme -------------------------------------------------------------------------------- /Demo/Demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Demo/Demo/AppDelegate.h -------------------------------------------------------------------------------- /Demo/Demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Demo/Demo/AppDelegate.m -------------------------------------------------------------------------------- /Demo/Demo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Demo/Demo/Default-568h@2x.png -------------------------------------------------------------------------------- /Demo/Demo/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Demo/Demo/Default.png -------------------------------------------------------------------------------- /Demo/Demo/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Demo/Demo/Default@2x.png -------------------------------------------------------------------------------- /Demo/Demo/Demo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Demo/Demo/Demo-Info.plist -------------------------------------------------------------------------------- /Demo/Demo/Demo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Demo/Demo/Demo-Prefix.pch -------------------------------------------------------------------------------- /Demo/Demo/FixedOverlayManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Demo/Demo/FixedOverlayManager.h -------------------------------------------------------------------------------- /Demo/Demo/FixedOverlayManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Demo/Demo/FixedOverlayManager.m -------------------------------------------------------------------------------- /Demo/Demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Demo/Demo/ViewController.h -------------------------------------------------------------------------------- /Demo/Demo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Demo/Demo/ViewController.m -------------------------------------------------------------------------------- /Demo/Demo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/Demo/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Demo/Demo/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /Demo/Demo/lenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Demo/Demo/lenna.png -------------------------------------------------------------------------------- /Demo/Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Demo/Demo/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/LICENSE -------------------------------------------------------------------------------- /MotionOrientation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/MotionOrientation.podspec -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/README.md -------------------------------------------------------------------------------- /Sources/MotionOrientation/MotionOrientation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Sources/MotionOrientation/MotionOrientation.h -------------------------------------------------------------------------------- /Sources/MotionOrientation/MotionOrientation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastyone/MotionOrientation/HEAD/Sources/MotionOrientation/MotionOrientation.m --------------------------------------------------------------------------------