菜鸟教程小白 发表于 2022-12-12 12:10:21

ios - 关闭后弹出 View Controller


                                            <p><p>我有一个导航 ControllerA,我在其上推送 ViewControllerB。我从 B 模态地呈现 ViewControllerC。我需要同时关闭 C 和弹出 B。我想按顺序进行,首先保持关闭动画,然后是从 B 到 A 的弹出动画。我尝试了这段代码但没有成功:</p>

<pre><code>[self dismissViewControllerAnimated:YES completion:^{
       ;
}];
</code></pre>

<p>关于如何实现这一点的任何建议?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果您使用 C viewcontoller 编写,那么:</p>

<pre><code>UIViewController *pvc = self.presentingViewController;
UINavigationController *navController = ] ? (UINavigationController *)pvc : pvc.navigationController;
[self dismissViewControllerAnimated:YES completion:^{
;
}];
</code></pre>

<p>或者如果在B ViewController 中</p>

<pre><code>[self.presentedViewController dismissViewControllerAnimated:YES completion:^{
   ;
}];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 关闭后弹出 ViewController ,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26489074/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26489074/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 关闭后弹出 View Controller