TTNavigator popViewController?
是否有相当于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
通过一些快速谷歌搜索,我找到了这个页面: http://api. Three20.info/interface_t_t_navigator.php
我认为这就是您正在寻找的方法:
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:
您可以通过 TTNavigator 访问导航控制器并调用 popViewControllerAnimated。像这样的东西:
You can access the navigation controller through the TTNavigator and call popViewControllerAnimated. Something like this:
我使用下面的代码,确实收到警告,但它按预期工作。
<代码>
[[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];