令人沮丧。我试图只制作一个应用程序肖像。
在 Targets => Summary => Supported Interface Options 中,仅选择了纵向。
我在我的应用程序的导航控制器上放置了以下内容:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
-(BOOL)shouldAutorotate{
return NO;
}
甚至将其复制到导航控制器的根视图控制器上。仍然显示允许旋转视图。我仍然可以在 iPad 上将我的应用程序旋转到横向,甚至在 iPhone 上甚至可以上下颠倒。
谢谢!