您好我正在尝试让我的Iphone应用程序允许所有方向,目前我正在使用TableViewController,我编辑了代码
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return YES;
//(interfaceOrientation == UIInterfaceOrientationPortrait);
}
我的应用程序在旋转时完全没有变化它只是侧面显示一张桌子?如何让它随设备一起旋转?感谢
此外,我在开头使用导航控制器,并有多个segues转到其他视图
答案 0 :(得分:1)
检查你的项目.plist文件,并确保有4个元素用于键“支持的界面方向
”如下: 支持的界面方向:
<array>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
</array>
如果不是全部,请通过选择设备图标从.plist文件或xcode编辑器添加它们