【发布时间】:2015-09-14 18:51:00
【问题描述】:
作为标题,我想知道现在是否可以在 iOS 9 中以编程方式锁定方向?这对我的应用程序至关重要,但我找不到办法。谢谢。
【问题讨论】:
作为标题,我想知道现在是否可以在 iOS 9 中以编程方式锁定方向?这对我的应用程序至关重要,但我找不到办法。谢谢。
【问题讨论】:
使用supportedInterfaceOrientations 和preferredInterfaceOrientationForPresentation 来管理方向 例如
-(UIInterfaceOrientationMask)supportedInterfaceOrientations{
return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation{
return UIInterfaceOrientationPortrait;
}
【讨论】: