我有三个UIViewController的Tab Bar Controller应用程序,都在故事板中完成 设备方向设置为all,但Upside Down除外。
对于一个UIViewController,我有以下代码:
- (BOOL) shouldAutorotate {
return NO;
}
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationPortrait;
}
但我仍然可以轮换 不应该支持InterfaceInrientations限制吗?
答案 0 :(得分:2)
如果您正在使用NavigationController,那么您应该将您的代码放在NavigationController类中。