作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有关于如何使用 WCSessionUserInfoTransfer
在我的 watch 和 iOS 之间更改数据的简单教程?
iOS 应用程序的委托(delegate)中必须写什么?
在我以前的编程中,我使用:
[WKInterfaceController openParentApplication:@{@"Kommando":@"Radius"} reply:^(NSDictionary *replyInfo, NSError *error) {
if (error) {
NSLog(@"Error from parent: %@", error);
} else {
NSLog(@"Radius from parent: %@", [replyInfo objectForKey:@"Radius"]);
}
}];
最佳答案
您需要做的第一件事是定义一个 WCSession。必须在您计划向其中传输数据和从中接收数据的每个类中定义并激活它。要使用 WCSession,请确保它受支持,然后激活默认 session ,如下所示。
#import <WatchConnectivity/WatchConnectivity.h>
if ([WCSession isSupported]) {
WCSession *session = [WCSession defaultSession];
session.delegate = self;
[session activateSession];
}
从这里,您可以在需要发送数据的地方(从 watch 或 iOS 应用程序)使用transferUserInfo:
[[WCSession defaultSession] transferUserInfo:@{@"Kommando":@"Radius"}];
在接收端,您将使用session:didReceiveUserInfo
。请注意,与 handleWatchKitExtensionRequest
不同,这不再需要位于 iOS 应用端的应用委托(delegate)中。您可以在任何需要接收数据的地方使用它。确保在您还拥有 didReceiveUserInfo
的类中激活 WCSession,如上所示。
- (void)session:(nonnull WCSession *)session didReceiveUserInfo:(nonnull NSDictionary<NSString *,id> *)userInfo {
NSLog(@"Radius from parent: %@", [userInfo objectForKey:@"Radius"]);
}
关于ios - 如何在 watchos 中使用 WCSessionUserInfoTransfer?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30735331/
有没有关于如何使用 WCSessionUserInfoTransfer 在我的 watch 和 iOS 之间更改数据的简单教程? iOS 应用程序的委托(delegate)中必须写什么? 在我以前的编
我是一名优秀的程序员,十分优秀!