当我在splitView中添加tabBarController时,方向不起作用

时间:2012-03-14 06:19:05

标签: objective-c xcode4.2 ipad

在我的应用程序中,我在分割视图的RootViewController中添加了tabBarController。在该肖像模式下工作正常,但它的方向不会更改为横向模式。当我在rootViewController中添加tabBarController时,方向不会改变。

请建议我这样做的方法。

1 个答案:

答案 0 :(得分:2)

确保标签栏控制器中包含的所有视图控制器都可以在所有方向上显示。有关更多信息,请参阅技术Q& A QA1688 https://developer.apple.com/library/ios/#qa/qa1688/_index.html

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return YES;
}