Swift 3で特定のviewControllerのみで強制回転をしたい。
アプリ起動時に、横画面にしたいと思い、
と設定して、
下のように書いても、
viewControllerのみで強制回転できませ
ちなみに親にはコンテナビューコントローラーはありません。
シュミレーターで試しているだけということも関係あるかもしれません。
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
override var supportedInterfaceOrientations : UIInterfaceOrientationMask {
return .landscape
}
override var shouldAutorotate : Bool {
return true
}
}