1

目前正在开发一个使用标签栏控制器的应用程序。该应用程序根本不会旋转到横向模式 - 所有视图都继承自 baseVieController,在这里我已经实现:

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

现在我知道 tabBar 控制器不会旋转,除非它的所有子视图都支持视图试图旋转到的方向 - 我的问题是:如果我没有在所有子视图中实现 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 方法,即使我没有将其指定为所需的方向,它是否会将这些子视图锁定为纵向模式?因此将整个 tabBar 控制器锁定为纵向。我知道以前有人问过类似的问题,但我找不到这个特定问题的答案。提前致谢。

4

3 回答 3

4

您可以旋转视图,只需要像下面这样覆盖:只需在要旋转的视图控制器类中添加代码(这里是“SampleClassName”)

@interface UITabBarController (rotation)
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation;
@end


@implementation UITabBarController (rotation)
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

    if ([self.selectedViewController isKindOfClass:[UINavigationController class]])
    {
        UINavigationController *navController = (UINavigationController *) self.selectedViewController;
        if ([[navController visibleViewController] isKindOfClass:[SampleClassName class]])
            return YES;
    }
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
@end
于 2012-08-08T10:10:16.767 回答
1

如果您正在使用情节提要为 IOS 5 开发,这将有助于我遇到同样的问题。通常在故事板之前,我们可能会将 TabBarController 添加到 uiview 或 appdelegate 中。使用情节提要,情节提要视图并不总是必须连接到视图控制器。

要解决此问题

在子类字段类型 UITabBarController中添加新的类文件objective-c类

1 - 在情节提要中选择标签栏控制器视图

2 - 在自定义类更改UITabBarController到你新创建的类名,我叫我的 MainTabBarViewController

3 - 在你新创建的类中改变这个

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

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{
        if (interfaceOrientation == UIInterfaceOrientationPortrait)
            return YES;

        if (interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown)
            return YES;

        return NO;
}

基本上正在发生的事情是您正在 Interface Builder 中创建一个结构,但这只会让您获得一部分。在这种情况下,您仍然需要创建伴随代码。一开始这让我很困惑,因为我习惯于使用 .xib 从头开始​​构建视图,并且通常会从 appdelegate 配置 tabbarcontroller。

您也可以像这样有条件地控制其中的每一个

if (interfaceOrientation == UIInterfaceOrientationLandscapeLeft)
    return NO;

if (interfaceOrientation == UIInterfaceOrientationLandscapeRight)
    return NO;

if (interfaceOrientation == UIInterfaceOrientationPortrait)
    return YES;

if (interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown)
    return YES;

对你想要的返回yes,对你不想要的返回no。或者接受一切回报yes。

于 2012-08-21T19:01:33.187 回答
0

至于您的父视图控制器(在您的情况下 - baseViewController)实现此方法 -

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

您无需在子视图控制器中实现此功能,因为它支持所有子视图控制器中的所有方向。

于 2012-08-08T09:44:59.900 回答