访问视图控制器时的运行方法

访问视图控制器时的运行方法

本文介绍了从另一个正在解除的 vc 访问视图控制器时的运行方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设我有一个名为 VC1 的初始 vc,然后我有一个名为 VC2 的第二个 vc.VC1 与 VC2 有一个转场,在 VC2 上有一个按钮可以关闭 VC2,然后显示 VC1.一旦 VC1 加载,我想运行一个方法,但在视图中我不能这样做,所以我可以在哪里做?

Let's say I have my initial vc called VC1, then I have a second one called VC2. VC1 has a segue to VC2, on VC2 there is a button that will dismiss VC2 and then show VC1. Once VC1 loads I want to run a method but I can't do that in view did load so where can I do it?

[VC1] -> [VC2]

[VC1] -> [VC2]

推荐答案

您可以使用委托方法来实现这一点.在您调用以关闭 VC2 调用委托的方法中.您可以在 VC1 中实现此委托.

You can use a delegate method to achieve this. In the method you call to dismiss VC2 call the delegate. You can implement this delegate in VC1.

这篇关于从另一个正在解除的 vc 访问视图控制器时的运行方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 09:15