WatchKit手表上没有收到Darwin Notification

时间:2016-02-02 13:35:34

标签: ios objective-c notifications watchkit watch-os-2

我正在尝试使用我的iPhone向Watch设备发送通知 手表上的CFNotificationCenterAddObserverCFNotificationCenterPostNotification。(我没有在Xcode模拟器上进行测试)。

这是我在iOS应用中的代码:

#include <CoreFoundation/CoreFoundation.h>
...
- (void)sendLogOutNotificationToWatch{
    dispatch_async(dispatch_get_main_queue(), ^{
        CFNotificationCenterPostNotification(CFNotificationCenterGetDarwinNotifyCenter(), CFSTR("NOTIFICATION_TO_WATCH"), (__bridge const void *)(self), nil, TRUE);
    });
}

这就是我在Apple Watch扩展程序中使用它的方式:

@implementation InterfaceController
.....
- (void)awakeWithContext:(id)context {

    [super awakeWithContext:context];
    ....
    [self registerToNotification];
}

- (void)registerToNotification
{
    [[NSNotificationCenter defaultCenter] removeObserver:self name:@com.test.app" object:nil];
    CFNotificationCenterRemoveObserver( CFNotificationCenterGetDarwinNotifyCenter(), (__bridge const void *)( self ), CFSTR( "NOTIFICATION_TO_WATCH" ), NULL );

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(userLoggedOut ) name:@"com.test.app" object:nil];
    CFNotificationCenterAddObserver( CFNotificationCenterGetDarwinNotifyCenter(), (__bridge const void *)( self ), didReceivedDarwinNotification, CFSTR( "NOTIFICATION_TO_WATCH" ), NULL, CFNotificationSuspensionBehaviorDrop );

}

void didReceivedDarwinNotification()
{
    [[NSNotificationCenter defaultCenter] postNotificationName:@"com.test.app" object:nil];
}


- (void)didDeactivate {
    [super didDeactivate];

    [[NSNotificationCenter defaultCenter] removeObserver:self name:@"com.test.app" object:nil];
    CFNotificationCenterRemoveObserver( CFNotificationCenterGetDarwinNotifyCenter(), (__bridge const void *)( self ), CFSTR( "NOTIFICATION_TO_WATCH" ), NULL );
    [[NSNotificationCenter defaultCenter] removeObserver:self];

}
- (void)userLoggedOut{
    [self showAlertViewwithTitle:@"Notice" andMessage:@"User logged out on iPhone device!"];
}

2 个答案:

答案 0 :(得分:1)

您应该使用WatchConnectivity将消息从iPhone发送到Apple Watch。

手表和iPhone上的API几乎完全相同。如果您的监视应用未运行,或者屏幕关闭,则应使用transferUserInfo。如果您的监视应用程序正在运行且屏幕已打开,则可以使用sendMessage。我通常会包装这些调用,首先尝试使用sendMessage,如果失败则使用transferUserInfo:

// On the iPhone
func trySendMessage(message: [String : AnyObject]) {
    if self.session != nil && self.session.paired && self.session.watchAppInstalled {
        self.session.sendMessage(message, replyHandler: nil) { (error) -> Void in
            // If the message failed to send, queue it up for future transfer
            self.session.transferUserInfo(message)
        }
    }
}

在监视中,您需要实现两个会话:DidReceiveMessage和session:didReceiveUserInfo。请注意,我不打算检查手表是否可以访问,因为如果手表不可用(或者如果它开始可达并且在检查后但在传输完成之前超出范围)那么数据仍会在发送时发送它回到了transferUserInfo的范围内。

答案 1 :(得分:1)

这是关于watchOS 2吗?正如其他人所建议的那样,您需要使用WatchConnectivity。达尔文通知不起作用,因为watchOS 2进程不再像在监视器1中那样在手机上使用。此外,WatchConnectivity更方便。