iOS中的App Store应用内弹出窗口

时间:2014-07-28 04:19:34

标签: ios objective-c

我正在尝试添加一项功能,允许用户从应用内下载我的其他应用。

如果我只是链接到App Store,它会将用户启动到App Store应用程序并显示我的应用程序,但我想要一个应用程序内的方法。我在Facebook的iOS应用程序上看过这个。我该如何实现这种系统?

1 个答案:

答案 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];