我在init方法和viewDidLoad方法中调用了这行代码。但是,方法 applicationDidBecomeActiveNotification 永远不会在我第一次运行应用程序时触发。它只在我运行一次后运行。
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(applicationDidBecomeActiveNotificationAction)
name:UIApplicationDidBecomeActiveNotification
object:nil];
这是正确的吗?有没有办法让我的 viewController 在我第一次运行应用程序时收到 UIApplicationDidBecomeActiveNotification 通知。