检测iOS7上的锁定事件

时间:2013-11-15 04:53:28

标签: iphone ios7 foregroundnotification

每个人的问候!!

我想要iOS7版本的iOS设备来检测锁定。我在其中做了很多研究,但没有为iOS7找到任何解决方案。

例如,

Programmatically lock iPhone screen in iOS 7

Lock Unlock events iphone

我已经为iOS6实现了相同的功能,但它不适用于iOS7。

查看iOS6的工作信息

 // coming back in the foreground
[[NSNotificationCenter defaultCenter] addObserverForName:UIApplicationWillEnterForegroundNotification object:nil queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *note)
{
    // if user lock the screen 
    if ([[UIApplication sharedApplication] applicationState] == 1)
    {
          // coming back after unlocking screen..
    }
}];

我经历了很多来源,发现在iOS7中没有任何解决方案。因此,我在这里发布个别问题,如果有人知道如何在支持iOS7的设备上检测锁定事件,请告诉我。

任何帮助将不胜感激!

0 个答案:

没有答案