gpt4 book ai didi

ios - 处理 applicationDidBecomeActive - "How can a view controller respond to the app becoming Active?"

转载 作者:IT王子 更新时间:2023-10-29 07:26:31 26 4
gpt4 key购买 nike

我的主 AppDelegate.m 类中有 UIApplicationDelegate 协议(protocol),定义了 applicationDidBecomeActive 方法。

我想在应用程序从后台返回时调用一个方法,但该方法在另一个 View Controller 中。如何检查 applicationDidBecomeActive 方法中当前显示的是哪个 View Controller ,然后调用该 Controller 中的方法?

最佳答案

应用程序中的任何类都可以成为应用程序中不同通知的“观察者”。当您创建(或加载)您的 View Controller 时,您需要将其注册为 UIApplicationDidBecomeActiveNotification 的观察者,并指定当该通知发送到您的应用程序时您要调用的方法。

[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(someMethod:)
name:UIApplicationDidBecomeActiveNotification object:nil];

别忘了打扫卫生!当您的 View 消失时,请记住将自己作为观察者移除:

[[NSNotificationCenter defaultCenter] removeObserver:self 
name:UIApplicationDidBecomeActiveNotification
object:nil];

有关 Notification Center 的更多信息.

关于ios - 处理 applicationDidBecomeActive - "How can a view controller respond to the app becoming Active?",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3639859/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com