我使用此代码打开 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];
});