当iOS设备进入睡眠模式时(当屏幕变黑时),有没有可以检测到该事件?

时间:2013-01-16 06:00:49

标签: ios iphone-privateapi sleep-mode

我想检测两个事件:

  1. 设备被锁定/解锁。
  2. 设备进入睡眠状态,屏幕变黑。
  3. 我能在这里实现的第一个: Is there a way to check if the iOS device is locked/unlocked?

    现在我想检测第二个事件,有什么方法可以做到吗?

2 个答案:

答案 0 :(得分:20)

你基本上已经有了解决方案,我猜你是从我最近的一个答案中找到的:)

使用com.apple.springboard.hasBlankedScreen事件。

当屏幕空白时会发生多个事件,但这个事件就足够了:

CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), //center
                                NULL, // observer
                                hasBlankedScreen, // callback
                                CFSTR("com.apple.springboard.hasBlankedScreen"), // event name
                                NULL, // object
                                CFNotificationSuspensionBehaviorDeliverImmediately);

回调是:

static void hasBlankedScreen(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef userInfo)
{
    NSString* notifyName = (__bridge NSString*)name;
    // this check should really only be necessary if you reuse this one callback method
    //  for multiple Darwin notification events
    if ([notifyName isEqualToString:@"com.apple.springboard.hasBlankedScreen"]) {
       NSLog(@"screen has either gone dark, or been turned back on!");
    }
}

更新:正如@VictorRonin在下面的评论中所说,应该很容易跟踪自己屏幕当前是 on 还是 off 。这允许您确定屏幕打开或关闭时是否发生hasBlankedScreen事件。例如,当您的应用启动时,请设置一个变量以指示屏幕已开启。此外,任何时候发生任何UI交互(按下按钮等),您都知道屏幕当前必须处于打开状态。因此,您获得的下一个hasBlankedScreen应该表明屏幕关闭

另外,我想确保我们对术语很清楚。当屏幕由于超时或用户手动按下电源按钮而自动变暗时,设备锁定。无论用户是否配置了密码,都会发生这种情况。届时,您会看到com.apple.springboard.hasBlankedScreencom.apple.springboard.lockcomplete事件。

当屏幕重新开启时,您将再次看到com.apple.springboard.hasBlankedScreen。但是,在用户通过滑动(可能是密码)实际解锁设备之前,您不会看到com.apple.springboard.lockstate


更新2:

还有另一种方法可以做到这一点。您可以使用一组备用API来收听此通知,并在收到通知时get a state variable

#import <notify.h>

int status = notify_register_dispatch("com.apple.springboard.hasBlankedScreen",
                                      &notifyToken,
                                      dispatch_get_main_queue(), ^(int t) {
                                          uint64_t state;
                                          int result = notify_get_state(notifyToken, &state);
                                          NSLog(@"lock state change = %llu", state);
                                          if (result != NOTIFY_STATUS_OK) {
                                              NSLog(@"notify_get_state() not returning NOTIFY_STATUS_OK");
                                          }
                                      });
if (status != NOTIFY_STATUS_OK) {
    NSLog(@"notify_register_dispatch() not returning NOTIFY_STATUS_OK");
}

并且您需要保留 ivar 或其他一些持久性变量来存储通知令牌(不要只是在方法中将其设为局部变量)寄存器!)

int notifyToken;

您应该看到通过state获得的notify_get_state()变量在0和1之间切换,这样您就可以区分屏幕开启和关闭事件。

虽然this document is very old,但它会列出哪些通知事件具有可通过notify_get_state()检索的关联状态。

警告: see this related question for some complications with this last technique

答案 1 :(得分:1)

您还可以订阅通知:“com.apple.springboard.lockstate”并使用API​​ SBGetScreenLockStatus来确定设备是否被锁定的状态。