TTNavigator popViewController?

发布于 2024-10-05 16:25:12 字数 94 浏览 5 评论 0原文

是否有相当于 UINavigationController 的 popViewController 的 TTNavigator? (或者关闭我找不到的视图控制器的替代方法?)

Is there a TTNavigator equivalent to UINavigationController's popViewController? (or an alternative method to dismiss a view controller that I can't find?)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

赠意 2024-10-12 16:25:12

通过一些快速谷歌搜索,我找到了这个页面: http://api. Three20.info/interface_t_t_navigator.php

我认为这就是您正在寻找的方法:

<块引用>

(void) - 删除AllViewControllers
从窗口中删除所有视图控制器并释放它们。

Through some quick googling I found this page: http://api.three20.info/interface_t_t_navigator.php

I think this is the method you are looking for:

(void) - removeAllViewControllers
Removes all view controllers from the window and releases them.

七堇年 2024-10-12 16:25:12

您可以通过 TTNavigator 访问导航控制器并调用 popViewControllerAnimated。像这样的东西:

[[TTNavigator navigator].topViewController.navigationController popViewControllerAnimated:YES];

You can access the navigation controller through the TTNavigator and call popViewControllerAnimated. Something like this:

[[TTNavigator navigator].topViewController.navigationController popViewControllerAnimated:YES];
冰火雁神 2024-10-12 16:25:12

我使用下面的代码,确实收到警告,但它按预期工作。

<代码>
[[TTNavigator 导航器].visibleViewController.navigationController popViewControllerAnimated:YES];

I use the code below, and I do get a warning, but it works as expected.


[[TTNavigator navigator].visibleViewController.navigationController popViewControllerAnimated:YES];

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文