6

这似乎是一个错误,但我想知道是否有人能想到解决方法。

在 iPad 上,您将视图控制器呈现为 UIModalPresentationFormSheet。这个视图控制器扩展了 UITabBarController 并且有足够的控制器来自动显示“更多”标签栏按钮。一旦您点击更多按钮,它将正确显示列表,但是一旦您点击“编辑”,它就会显示比实际表单更大的编辑视图(在表单内裁剪),导致内容超出视图,包括带有“完成”按钮的工具栏。关闭的唯一方法是强制退出应用程序。

为了验证它不是特定于我的应用程序的东西,我启动了一个单视图项目,并展示了一个简单的模式视图。此模态视图控制器扩展了 UITabBarController 并具有以下 init 方法:

- (id)init {
    self = [super init];
    if (self) {
        self.modalPresentationStyle = UIModalPresentationFormSheet;
        NSMutableArray *controllers = [NSMutableArray array];
        for (int i = 0; i< 15; i++) {
            UIViewController *vc = [[UIViewController alloc] init];
            UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
            vc.title = [NSString stringWithFormat:@"view %i", i];
            [controllers addObject:nav];
        }
        self.viewControllers = controllers;
    }
    return self;
}

我还尝试将 modalPresentationStyle 添加到 moreNavigationController 而没有任何变化。

4

2 回答 2

3

美好的一天,头晕。

你做了一个很好的挑战。这是一个解决方案,也许它有点硬核,但它确实有效。

我已经按照你写的那样做了——继承了 UITabBarController 并将其呈现为模态视图控制器。并遇到同样的问题。当点击“更多”屏幕中的“编辑”按钮时,UITabBarCustomizeView 出现并且它的框架不足。

所以我做了以下事情。我已将 MyModalTabBarVC 设为自身的委托并实现了tabBarController:willBeginCustomizingViewControllers:方法:

- (void)tabBarController:(UITabBarController *)tabBarController     
willBeginCustomizingViewControllers:(NSArray *)viewControllers
{
    UIView *modalView = self.view;
    CGRect bounds = modalView.bounds;

    UIView *customizationView   = [[modalView subviews] objectAtIndex:1];
    UIView *customizationNavBar = [[customizationView subviews] objectAtIndex:0];

    CGRect navBarFrame = [customizationNavBar frame];
    navBarFrame.size.width = bounds.size.width;
    customizationNavBar.frame = navBarFrame;
    customizationView.frame   = bounds;
}

所以当这个方法被调用的时候UITabBarCustomizeView就已经创建好了。并且可以手动更改错误的框架。如果您po [self.view subviews]在开始时登录,您将获得:

(id) $1 = 0x06c6a940 <__NSArrayM 0x6c6a940>(
<UITransitionView: 0xd744ab0; frame = (0 0; 540 571); clipsToBounds = YES; autoresize = W+H; layer = <CALayer: 0xd744b50>>,
<UITabBarCustomizeView: 0x6c5e570; frame = (0 -384; 768 1004); animations = { position=<CABasicAnimation: 0x6c569a0>; }; layer = <CALayer: 0x6c618d0>>,
<UITabBar: 0xd744110; frame = (0 571; 540 49); autoresize = W+TM; layer = <CALayer: 0xd742b80>>,
)

PS。此解决方案不修复动画。从日志中可以看出,损坏的动画已经创建并收费。我希望取消它并适当地添加一个新的不会成为问题。

于 2012-09-17T01:07:16.687 回答
0

模态视图的 viewController 一定会导致故障。

您可以尝试:

  1. 编辑时隐藏标签栏,按下完成按钮时取消隐藏。
  2. 为视图控制器创建一个自定义工具栏,这可以通过 UIView 完成,因此它始终设置在视图的顶部。
  3. 调整您的各个选项卡的大小。最好的方法是使用 UIViewController 和 IBActions 创建您自己的自定义标签栏,并使用 IBOutlets 连接到 UIButtons。

为什么 modalPresentationStyle 中有这么多标签?我个人会改用 push segue。

尝试推送到它们自己的导航控制器下的一组新视图控制器。标签栏将有更多空间。要返回,请在工具栏中放置一个后退按钮,该按钮会弹出推送,或推送回原来的位置。

于 2012-09-17T00:47:23.097 回答