菜鸟教程小白 发表于 2022-12-12 12:42:08

ios - 无法将 View Controller 弹出回我的 Storyboard中的 UITabView


                                            <p><p>我遇到了内存管理问题,终于找到了问题,我不断实例化新的 ViewController 。当应用程序启动时,它直接进入 <code>FirstViewController</code>,它是 Storyboard 中 <code>UITabBarController</code> 内的一个元素。</p>

<p>然后我用这个方法显示 <code>FilterViewController</code>:</p>

<pre><code>- (IBAction)searchOptions:(id)sender {
    FilterViewController *ctrl = [ init];
    [UIView transitionFromView:self.view toView:ctrl.view duration:1
          options:UIViewAnimationOptionTransitionCurlUp completion:nil];

    self.filterViewController = ctrl;

    [self.navigationController pushViewController:self.filterViewController
          animated:NO];
}
</code></pre>

<p>它工作正常并带来了 <code>FilterViewController</code> 它有自己的 .xib,所以它在 Storyboard 中<strong>不是</strong>。</p>

<p>现在当尝试弹回 <code>FirstViewController</code> 我使用这个方法:</p>

<pre><code>- (IBAction)backToMap:(id)sender {

    // i used the below when trying to push another view controller
    /*UIStoryboard *storyboard = [UIStoryboard storyboardWithName
      :@&#34;MainStoryboard&#34; bundle:nil];

    FirstViewController *fvc = [storyboard
      instantiateViewControllerWithIdentifier:@&#34;FirstViewController&#34;];

    fvc.modalTransitionStyle = UIModalTransitionStyleCoverVertical;*/

    ;
}
</code></pre>

<p>但是它没有做任何事情。什么都没有,我看不出这里有什么问题?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>popViewontrollerAnimated 仅在您将 ViewController 推送到导航堆栈时使用,因此除非您的项目中有一个,否则它不会在这里做任何事情。 </p>

<p>当您使用 transitionFromView... 时,您正在<strong>用新 View 替换</strong>您当前的 View ,因此您需要再次调用它才能返回旧 View 。 </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 无法将 ViewController 弹出回我的 Storyboard中的 UITabView,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/17782739/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/17782739/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 无法将 View Controller 弹出回我的 Storyboard中的 UITabView