嗨,我想在手表套件应用程序上实现示例应用程序。我想显示在 iphone 中运行的父应用程序的一些信息,现在我想通过按钮单击手表套件的预成型操作获取手表套件应用程序中的数据。我已经使用委托方法与扩展应用程序进行后台通信,但是当我在其中打印错误时遇到相同的错误
[InterfaceController openParentApplication:dict reply:^(NSDictionary *replyInfo, NSError *error)
{
NSLog(@"%@",[replyInfo objectForKey:@"Key"]);
NSLog(@"error:-%@",[error description]);
}
得到错误....
Error: Error Domain=com.apple.watchkit.errors Code=2 "The UIApplicationDelegate in the iPhone App never called reply() in -[UIApplicationDelegate application:handleWatchKitExtensionRequest:reply:]" UserInfo=0x7f8603227730 {NSLocalizedDescription=The UIApplicationDelegate in the iPhone App never called reply() in -[UIApplicationDelegate application:handleWatchKitExtensionRequest:reply:]}
请建议我如何从扩展应用程序中获取手表应用程序中的数据。提前致谢。