Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种方法来指示 viewWillDisappear 方法仅在我的扩展流程返回而不是前进时运行。
谢谢!
如果您使用导航控制器,您可以简单地检查 if self.navigationControlleris nil。Nil 导航控制器意味着您的视图控制器不再位于导航堆栈中。
self.navigationController
nil
如果您使用模态视图控制器,您可以检查是否self.presentingViewController为nil.
self.presentingViewController