├── .gitignore ├── HGOrientationLabel.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── HGOrientationLabel ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── HGOrientationLabel.h ├── HGOrientationLabel.m ├── Info.plist ├── NextViewController.h ├── NextViewController.m ├── RootViewController.h ├── RootViewController.m └── main.m ├── LICENSE ├── README.md └── show.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/.gitignore -------------------------------------------------------------------------------- /HGOrientationLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/HGOrientationLabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HGOrientationLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/HGOrientationLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HGOrientationLabel/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/HGOrientationLabel/AppDelegate.h -------------------------------------------------------------------------------- /HGOrientationLabel/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/HGOrientationLabel/AppDelegate.m -------------------------------------------------------------------------------- /HGOrientationLabel/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/HGOrientationLabel/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HGOrientationLabel/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/HGOrientationLabel/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HGOrientationLabel/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/HGOrientationLabel/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HGOrientationLabel/HGOrientationLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/HGOrientationLabel/HGOrientationLabel.h -------------------------------------------------------------------------------- /HGOrientationLabel/HGOrientationLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/HGOrientationLabel/HGOrientationLabel.m -------------------------------------------------------------------------------- /HGOrientationLabel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/HGOrientationLabel/Info.plist -------------------------------------------------------------------------------- /HGOrientationLabel/NextViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/HGOrientationLabel/NextViewController.h -------------------------------------------------------------------------------- /HGOrientationLabel/NextViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/HGOrientationLabel/NextViewController.m -------------------------------------------------------------------------------- /HGOrientationLabel/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/HGOrientationLabel/RootViewController.h -------------------------------------------------------------------------------- /HGOrientationLabel/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/HGOrientationLabel/RootViewController.m -------------------------------------------------------------------------------- /HGOrientationLabel/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/HGOrientationLabel/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/README.md -------------------------------------------------------------------------------- /show.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGOrientationLabel/HEAD/show.gif --------------------------------------------------------------------------------