1

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

到目前为止,我在这方面找到的所有内容,都只是将我带出我的应用程序并进入本机应用程序商店!

有谁知道如何从应用程序内部展示应用程序商店而无需关闭您的应用程序?

谢谢

4

1 回答 1

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]
    }
}
于 2013-10-20T18:28:05.027 回答