我尝试创建特定的viewcontroller
仅portrait
模式不应该轮换landscape
。我已更改为storyboard
,但它无效。
#if __IPHONE_OS_VERSION_MAX_ALLOWED < 90000
- (NSUInteger)supportedInterfaceOrientations
#else
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
#endif
{
return UIInterfaceOrientationMaskPortrait;
}