我在我的应用程序中使用 watchkit。我想通过watchkit在iphone中打开应用程序。我搜索了很多但找不到任何东西。任何帮助将不胜感激。
我也试过下面的链接
How can I open the parent app on iPhone from my WatchKit app?
Best Answer-推荐答案 strong>
如果您使用的是 Objective C,那么只需将以下方法放入 AppDelegate.m 文件中。
- (void)applicationUIApplication *)application handleWatchKitExtensionRequestNSDictionary *)userInfo replyvoid(^)(NSDictionary *replyInfo))reply {
NSString * request = [userInfo objectForKey"requestString"];
if ([request isEqualToString"executeMethodA"]) {
// Do whatever you want to do when sent the message. For instance...
//[self executeMethodABC];
}
reply(@{@"clicked from watch"(1)});
}
希望对你有帮助。
关于ios - 如何从我的 WatchKit 应用程序打开 iPhone 上的应用程序?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/36131148/
|