从堆叠的屏幕弹出到MoreViewController选项卡

时间:2012-10-18 16:42:45

标签: cocoa-touch uinavigationcontroller uitabbarcontroller

我选择更多应用标签,进入某个屏幕,在该屏幕中再做一次选择。所以堆栈上有两个屏幕,并在那里显示一个modalView。

考虑到上面的场景,我需要将用户从他来的地方追溯到More标签。 我自己尝试过,后来提到了一些没有解决问题的互联网建议。

我写了下面的代码,这与其他人的建议类似。

  

[[self.tabBarController moreNavigationController]   dismissModalViewController:YES] [[self.tabBarController   moreNavigationController] popToRootViewController:YES]

你可以帮帮我吗?

1 个答案:

答案 0 :(得分:0)

我很抱歉在提到这个问题上有很多延迟。我刚刚测试了这个。

注意:

  1. 对于更多与标签相关的内容,使用了更多UINavigationController,除非 我们更改导航流程,可以访问屏幕堆栈 通过更多UINavigationController。
  2. 我能够从推送的屏幕和模型屏幕中弹出切换视图 BY

      

    [self.tabBarController.moreNavigationController   dismissModalViewControllerAnimated:YES];   [self.tabBarController.moreNavigationController   popToRootViewControllerAnimated:YES];

  3.