我的主 AppDelegate.m 类中有 UIApplicationDelegate
协议,并定义了 applicationDidBecomeActive
方法.
I have the UIApplicationDelegate
protocol in my main AppDelegate.m class, with the applicationDidBecomeActive
method defined.
我想在应用程序从后台返回时调用一个方法,但该方法在另一个视图控制器中.如何检查 applicationDidBecomeActive
方法中当前显示的视图控制器,然后调用该控制器中的方法?
I want to call a method when the application returns from the background, but the method is in another view controller. How can I check which view controller is currently showing in the applicationDidBecomeActive
method and then make a call to a method within that controller?
应用程序中的任何类都可以成为应用程序中不同通知的观察者".当您创建(或加载)您的视图控制器时,您需要将其注册为 UIApplicationDidBecomeActiveNotification
的观察者,并指定当通知发送到您的应用程序时要调用的方法.
Any class in your application can become an "observer" for different notifications in the application. When you create (or load) your view controller, you'll want to register it as an observer for the UIApplicationDidBecomeActiveNotification
and specify which method that you want to call when that notification gets sent to your application.
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(someMethod:)
name:UIApplicationDidBecomeActiveNotification object:nil];
别忘了自己打扫卫生!当您的视图消失时,请记住将自己移除为观察者:
Don't forget to clean up after yourself! Remember to remove yourself as the observer when your view is going away:
[[NSNotificationCenter defaultCenter] removeObserver:self
name:UIApplicationDidBecomeActiveNotification
object:nil];
更多关于通知中心.
这篇关于处理 applicationDidBecomeActive -“视图控制器如何响应应用程序变为活动状态?"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!