嗨,我正在尝试让我的 Iphone 应用程序允许所有方向,目前我正在使用 TableViewController,我编辑了代码
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return YES;
//(interfaceOrientation == UIInterfaceOrientationPortrait);
}
当我旋转它时,我的应用程序根本没有改变,它只是横向显示一个表格?如何让它随设备旋转?谢谢
另外,我在开始时使用导航控制器,并且有多个转到其他视图的 segue