我想阻止某些UIViewController
的風景方向。我讀了很多不同的東西來管理它,但我沒有找到一個解決方案運行良好。每次,方向都不會被阻塞,即使它應該是。即使我擋住風景旋轉,屏幕仍在旋轉
我有以下代碼以阻止在UIViewController
橫向方向不具有的橫向旋轉:
- (BOOL)shouldAutorotate {
return NO;
}
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskPortrait;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
return UIInterfaceOrientationPortrait;
}
即使是,該視圖以橫向旋轉。
我錯過了什麼嗎?
您需要使用自定義導航控制器來阻止方向。 – 2014-12-04 10:16:02