├── .gitignore ├── LICENSE ├── LandscapePlayer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── LandscapePlayer.xcscheme ├── LandscapePlayer ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/ForceOrientationSample-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/ForceOrientationSample-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /LandscapePlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/ForceOrientationSample-iOS/HEAD/LandscapePlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LandscapePlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/ForceOrientationSample-iOS/HEAD/LandscapePlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LandscapePlayer.xcodeproj/xcshareddata/xcschemes/LandscapePlayer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/ForceOrientationSample-iOS/HEAD/LandscapePlayer.xcodeproj/xcshareddata/xcschemes/LandscapePlayer.xcscheme -------------------------------------------------------------------------------- /LandscapePlayer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/ForceOrientationSample-iOS/HEAD/LandscapePlayer/AppDelegate.swift -------------------------------------------------------------------------------- /LandscapePlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/ForceOrientationSample-iOS/HEAD/LandscapePlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LandscapePlayer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/ForceOrientationSample-iOS/HEAD/LandscapePlayer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LandscapePlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/ForceOrientationSample-iOS/HEAD/LandscapePlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LandscapePlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/ForceOrientationSample-iOS/HEAD/LandscapePlayer/Info.plist -------------------------------------------------------------------------------- /LandscapePlayer/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/ForceOrientationSample-iOS/HEAD/LandscapePlayer/ViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/ForceOrientationSample-iOS/HEAD/README.md --------------------------------------------------------------------------------