如何在不将用户从我的应用中删除的情况下访问App Store?

时间:2013-10-20 18:14:53

标签: iphone app-store

在很多iHandy应用中,我看到他们宣传他们的其他应用。只有当用户按下链接,而不是从应用程序中取出并进入应用程序商店时,才会显示一个呈现应用程序商店的Web视图。然后,用户可以在不离开他们所在的应用程序的情况下下载应用程序。

到目前为止,我在此处找到的所有内容,只是将我从我的应用程序中移出并进入原生应用程序商店!

是否有人知道如何在应用内展示appstore而无需关闭应用?

由于

1 个答案:

答案 0 :(得分:2)

如果您的部署目标等于或高于iOS 6.0,则可以使用StoreKit.framework。

if(NSClassFromString(@"SKStoreProductViewController")) { // Checks for iOS 6 feature.

    SKStoreProductViewController *storeController = [[SKStoreProductViewController alloc] init];
    storeController.delegate = delegate; // productViewControllerDidFinish

    // Example app_store_id
    // [NSNumber numberWithInt:647623485];

    NSDictionary *productParameters = @{ SKStoreProductParameterITunesItemIdentifier : appStoreID };

    [storeController loadProductWithParameters:productParameters completionBlock:^(BOOL result, NSError *error) {
        if (result) {
            [self presentViewController:storeController animated:YES completion:nil];
        } else {
            [[[UIAlertView alloc] initWithTitle:@"Uh oh!" message:@"There was a problem displaying the app" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles: nil] show];
        }
    }];

} else { // Before iOS 6, we can only open the URL    
     [[UIApplication sharedApplication] openURL:appStoreURL]
    }
}