如何使用iOS限制特定的视图控制器肖像?

时间:2015-12-17 11:37:36

标签: ios objective-c iphone xcode

我尝试创建特定的viewcontrollerportrait模式不应该轮换landscape。我已更改为storyboard,但它无效。

#if __IPHONE_OS_VERSION_MAX_ALLOWED < 90000
- (NSUInteger)supportedInterfaceOrientations
#else
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
#endif
{
    return UIInterfaceOrientationMaskPortrait;
}

0 个答案:

没有答案