gpt4 book ai didi

ios - 自定义按钮回推

转载 作者:行者123 更新时间:2023-11-29 13:21:52 24 4
gpt4 key购买 nike

我有两个使用 UINavigationController 的 View 。当我点击自定义按钮时,我希望第二个 View 通过动画“滑动”回到第一个 View 。 (不是原来的导航栏)

最佳答案

在那个按钮 Action 上尝试类似这样的东西,

[self.navigationController popToViewController:aViewController animated:YES];

[self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:([self.navigationController.viewControllers count] - 2)] animated:YES];

这里的aViewController代表了之前的view controller。同样,您可以使用类似的代码弹出到您想要的任何 View Controller 。

[self.navigationController popToRootViewControllerAnimated:YES]; 将带您到 Root View Controller 。

关于ios - 自定义按钮回推,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14203530/

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