gpt4 book ai didi

ios - watch 上未收到 WatchKit Darwin 通知

转载 作者:行者123 更新时间:2023-11-28 21:32:55 25 4
gpt4 key购买 nike

我正在尝试使用以下方法从我的 iPhone 向 Watch 设备发送通知 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!"];
}

最佳答案

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

API 在 Watch 和 iPhone 上几乎完全相同。如果您的 watch 应用程序没有运行,或者屏幕关闭,您应该使用 transferUserInfo。如果您的 watch 应用程序正在运行并且屏幕已打开,您可以使用 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)
}
}
}

在 watch 上,您需要同时实现 session:DidReceiveMessage 和 session:didReceiveUserInfo。请注意,我不会费心检查 watch 是否可达,因为如果它不可达(或者如果它开始可达并在检查之后但在传输完成之前移出范围)那么数据仍然会在它被发送时发送回到 transferUserInfo 的范围内。

关于ios - watch 上未收到 WatchKit Darwin 通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35154998/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com