当设备变为活动状态时需要调用方法
我需要你的帮助,那就是我正在实现一个应用程序,因为一旦应用程序退出并成为Active,我需要调用一个方法,但它不起作用。当设备变为活动状态时,有什么方法可以从我们的 viewController 调用方法。
提前致谢。 塞卡尔·贝塔拉姆。
I need a help from you, That is I am implementing an application in that I need to call a method once the app resign and becomeActive but it is not working. Is there any way to call a method from our viewController when the device become active.
Thanks in advance.
Sekhar Bethalam.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建 VC 后,为
UIApplicationDidBecomeActive
通知(以及您可能希望对其做出反应的任何其他通知)添加一个观察者,并让它在您的 VC(或其他某个对象)上收到该通知时执行选择器你当时就知道了)。When your VC is created, add an observer for the
UIApplicationDidBecomeActive
notification (and any others you may wish to react to) and have it perform a selector when it receives that notification on your VC (or some other object you know about at that time).