从我的模态视图控制器中,您可以选择两个选项,然后每个选项显示一个tabBar,依此类推。我的模态视图清晰地自动旋转,但tabBars没有,即使我为我的项目中的每个UIViewController设置:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return YES;
}
我甚至在tabBar中有一个新视图,它应该在横向模式下被调用,但不幸的是它仍然在Potrait中:
对我来说很奇怪。
答案 0 :(得分:2)
在iOS中,只有在所有视图都同意的情况下,视图才会旋转。
确保您的UITabBarController
也同意,以及其他标签。