gpt4 book ai didi

iphone - 如何在不让用户退出我的应用程序的情况下访问 App Store?

转载 作者:行者123 更新时间:2023-12-02 05:46:56 25 4
gpt4 key购买 nike

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

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

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

谢谢

最佳答案

如果您的部署目标等于或高于 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]
}
}

关于iphone - 如何在不让用户退出我的应用程序的情况下访问 App Store?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19481025/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com