gpt4 book ai didi

ios - ContainerViewController popView 的 funky 内部的 UINavigationController

转载 作者:可可西里 更新时间:2023-11-01 06:11:56 25 4
gpt4 key购买 nike

所以我有一个 containerView Controller,它基本上就像 splitViewController。

我正在尝试在 containerViewController 中添加一个 UINavigationController,它工作得很好。

我在 Storyboard中创建了一个 UINavigationController,其中有一堆 UIViewController 连接到它,所有这些都通过“推送”segues 连接在一起。我从 Storyboard中取出这个 NavigationController,通过代码将它粘贴到我的 ContainerViewController 中。然后它将 NavigationController 显示在它应该显示的位置,我可以单击按钮,推送动画仅在 ContainerViewController 的 NavigationController 框架内发生。

但是,如果我从我的 NavigationController 上的代码中调用 popViewController,它将为整个 ContainerViewController 设置动画。这是我不想要的,我希望它只为 NavigationController 设置动画。

有谁知道它为什么这样做?

当您在 ContainerViewController 中有一个 UINavigationController,然后您可以在 NavigationController 上弹出 ViewController 时,如何使它只对 UINavigationController 进行动画处理,而不是对它所在的整个 ContainerViewController 进行动画处理?

最佳答案

我也遇到过这个问题。它也影响了我的插入。我的解决方法是使用代码而不是 Storyboard 片段。

- (void) switchToView:(NSString *)identifier {
UIViewController *target = [self getOrCreateViewController:identifier];
[self switchToViewController:target identifier:identifier];
}

// If you need to interact with the VC before it is pushed break it into 2 step process
- (UIViewController *) getOrCreateViewController:(NSString *)identifier {
NSArray *children = [self.viewControllers filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"restorationIdentifier == %@", identifier, nil]];
UIViewController *target = (children.count > 0 ? children[0] : [self.storyboard instantiateViewControllerWithIdentifier:identifier]);
return target;
}

// For my use case, I always animate via push. Could modify this to pop/push as appropriate
- (void) switchToViewController:(UIViewController *)target identifier:(NSString *)identifier {
[self setViewControllers:[self.viewControllers filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"restorationIdentifier != %@", identifier, nil]] animated:NO];
[self pushViewController:target animated:YES];

}

我知道有点 Fugly 解决方法...希望我找到更好的答案(到这里寻找一个)。 :-)

关于ios - ContainerViewController popView 的 funky 内部的 UINavigationController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10523430/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com