supportedInterfaceOrientations无法正常工作

时间:2014-04-14 17:45:00

标签: ios screen-orientation

我有三个UIViewController的Tab Bar Controller应用程序,都在故事板中完成 设备方向设置为all,但Upside Down除外。

对于一个UIViewController,我有以下代码:

- (BOOL) shouldAutorotate {
     return NO;
}

-(NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationPortrait;
}

但我仍然可以轮换 不应该支持InterfaceInrientations限制吗?

1 个答案:

答案 0 :(得分:2)

如果您正在使用NavigationController,那么您应该将您的代码放在NavigationController类中。