gpt4 book ai didi

ios - 当用户向后滑动时 popToRootViewControllerAnimated

转载 作者:行者123 更新时间:2023-11-29 10:22:19 25 4
gpt4 key购买 nike

我有 View A、 View B 和 View C。我已从 View A 推送 View B,并从 View B 推送 View C。

当用户点击 View C 中的后退按钮时,我调用 popToRootViewControllerAnimated 以便用户根本看不到 View B。

问题是,如果用户在 View C 中向后滑动,他们仍然会看到 View B。我根本不想让用户看到 View B,而是直接跳转到 View A。我该怎么办?

我目前使用xib。

最佳答案

您可以在 ViewController C 出现时更改 NavigationController 的堆栈。使用以下代码:-

NSMutableArray *aMutArr = [NSMutableArray arrayWithArray:self.navigationController.viewControllers];
[aMutArr removeObjectAtIndex:aMutArr.count-2];
self.navigationController.viewControllers = aMutArr;

我已经从堆栈中移除了 ViewController B。因此,如果您的用户向后滑动,他将能够看到 ViewController A。

关于ios - 当用户向后滑动时 popToRootViewControllerAnimated,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34370138/

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