作为标题,我想知道现在可以在iOS 9中以编程方式锁定方向吗?这对我的应用程序至关重要,但我找不到办法。感谢。
答案 0 :(得分:6)
使用supportedInterfaceOrientations和preferredInterfaceOrientationForPresentation用于管理方向 例如
-(UIInterfaceOrientationMask)supportedInterfaceOrientations{
return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation{
return UIInterfaceOrientationPortrait;
}