1

我使用此代码打开 AppStore 应用程序 url,它工作正常,我试图启动然后应用程序它自己,而不仅仅是打开 appstore 应用程序页面

任何提示我如何使用 NSURL 做到这一点

dispatch_async(dispatch_get_main_queue(), ^{

NSURL *appStoreUrl = [NSURL URLWithString:@"https://itunes.apple.com/us/app/cnn-app-for-iphone/id331786748?mt=8"];

        [[UIApplication sharedApplication] openURL:appStoreUrl];
      });
4

2 回答 2

1

如果应用程序支持自定义 URL 方案,您只能打开应用程序本身。通过打开 URL tweetbot:///post? 启用从 Tweetbot 发帖?

许多页面列出了您需要与其他应用程序交互的 URL,例如,请参阅http://handleopenurl.com/http://wiki.akosma.com/IPhone_URL_Schemes以获取其他示例和应用程序

于 2013-05-28T11:52:14.553 回答
0
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.com/apps/appname"]];
于 2013-05-28T11:50:57.920 回答