ipad睡眠唤醒事件
当 ipad 进入睡眠状态(即屏幕关闭)时,用户将其重新打开,此时当前的应用程序仍处于打开状态。有没有办法检测ipad从睡眠中唤醒的这个事件?
我想在它进入睡眠和唤醒时显示 UIAlert。
When the ipad goes to sleep i.e. the screen turns off, the user will turn it back on and the current application at the time is still open. Is there a way to detect this event that the ipad has woken up from sleep?
I want to be show an UIAlert whenever it goes to sleep and wakes up.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下应用程序委托的
- (void)applicationDidBecomeActive:(UIApplication *)application
委托方法。Take a look at the
- (void)applicationDidBecomeActive:(UIApplication *)application
delegate method of the application delegate.