菜鸟教程小白 发表于 2022-12-13 13:16:15

ios - 如何从我的 WatchKit 应用程序打开 iPhone 上的应用程序?


                                            <p><p>我在我的应用程序中使用 watchkit。我想通过watchkit在iphone中打开应用程序。我搜索了很多但找不到任何东西。任何帮助将不胜感激。</p>

<p>我也试过下面的链接
<a href="https://stackoverflow.com/questions/27884123/how-can-i-open-the-parent-app-on-iphone-from-my-watchkit-app/29448975#29448975" rel="noreferrer noopener nofollow">How can I open the parent app on iPhone from my WatchKit app?</a> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果您使用的是 Objective C,那么只需将以下方法放入 <code>AppDelegate.m</code> 文件中。</p>

<pre><code>- (void)application:(UIApplication *)application handleWatchKitExtensionRequest:(NSDictionary *)userInfo reply:(void(^)(NSDictionary *replyInfo))reply {
    NSString * request = ;
    if () {
      // Do whatever you want to do when sent the message. For instance...
      //;
    }
    reply(@{@&#34;clicked fromwatch&#34;:@(1)});
}
</code></pre>

<p>希望对你有帮助。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何从我的 WatchKit 应用程序打开 iPhone 上的应用程序?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/36131148/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/36131148/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何从我的 WatchKit 应用程序打开 iPhone 上的应用程序?