我正在尝试添加一项功能,允许用户从应用内下载我的其他应用。
如果我只是链接到App Store,它会将用户启动到App Store应用程序并显示我的应用程序,但我想要一个应用程序内的方法。我在Facebook的iOS应用程序上看过这个。我该如何实现这种系统?
答案 0 :(得分:1)
id来自AppStore URL https://itunes.apple.com/au/app/facebook/id284882215?mt=8
SKStoreProductViewController* productViewController = [[SKStoreProductViewController alloc] init];
[productViewController loadProductWithParameters:@{SKStoreProductParameterITunesItemIdentifier:@(284882215)} completionBlock:nil];
[productViewController setDelegate:self]; // Implement the delegate to make the cancel button work
[self presentViewController:productViewController animated:YES completion:nil];