我已阅读下面的q / a,这很棒。这正是我在测试项目中所做的,它运行正常。
我现在已经创建了我的真实项目,但在Watch扩展程序中,session: didReceiveApplicationContext:
无法启动。
这是我的发送代码:
-(void)sendPlistToWatch:(NSMutableDictionary *)dictionary {
NSLog(@"%s", __FUNCTION__);
if ([WCSession defaultSession]) {
NSDictionary *applicationDict = @{@"Favorites.plist":dictionary};
[[WCSession defaultSession] updateApplicationContext:applicationDict error:nil];
NSLog(@"sent dictionary");
} else {
NSLog(@"not paired");
}
}
这是手表上的接收代码:
- (void)awakeWithContext:(id)context {
[super awakeWithContext:context];
if ([WCSession isSupported]) {
[self.session activateSession];
self.session = [WCSession defaultSession];
self.session.delegate = self;
}
}
- (void)willActivate {
[super willActivate];
}
- (void)didDeactivate {
[super didDeactivate];
}
- (void)session:(nonnull WCSession *)session didReceiveApplicationContext:(nonnull NSDictionary<NSString *,id> *)applicationContext {
NSString *string = [applicationContext objectForKey:@"dictionary"];
NSMutableDictionary *dictionary = [applicationContext objectForKey:@"dictionary"];
dispatch_async(dispatch_get_main_queue(), ^{
NSLog (@"applicationContext: %@", applicationContext);
});
}
Send messages between iOS and WatchOS with WatchConnectivity in watchOS2
我已经观看了WWDC连接会话,并发现this site非常有帮助。
任何想法(也许它不是代码,但缺少或不正确的plist设置?)
答案 0 :(得分:6)
我遇到了类似的问题(iOS 9.3,watchOS 2.2),其中session: didReceiveApplicationContext:
委托方法在预期时不会触发。它似乎有一些未记录的行为,如果字典与之前发送的值匹配,则对updateApplicationContext()
的调用将无声地失败,既不发送字典也不发送错误(请参阅https://forums.developer.apple.com/thread/46107)。
该线程中提供的解决方案是在测试时向每个字典添加NSUUID().UUIDString
。为我工作。
答案 1 :(得分:2)
找到原因......
我确实激活了会话,但在此过程中被召唤已经太晚了。
我更改了代码以报告错误:
-(void)sendPlistToWatch:(NSMutableDictionary *)dictionary {
NSLog(@"%s", __FUNCTION__);
NSError *error = nil;
if ([WCSession defaultSession]) {
NSDictionary *applicationDict = @{@"StationFavorites.plist":dictionary};
[[WCSession defaultSession] updateApplicationContext:applicationDict error:&error];
if (error) {
NSLog(@"Problem: @%@", error);
} else {
NSLog(@"sent dictionary");
}
} else {
NSLog(@"not paired");
}
}
报告错误7004:WCErrorDomain Code=7004
无法完成操作。 (WCErrorDomain错误7004。)“`
我重置会话以显示在ViewDidLoad
之上,一切都很顺利。