gpt4 book ai didi

iphone - 在 iOS 7 上禁用 SKStoreProductViewController 速率

转载 作者:IT王子 更新时间:2023-10-29 08:15:43 35 4
gpt4 key购买 nike

所以我注意到 Apple 更改了 SKStoreProductViewController,禁用了“写评论”按钮。此问题是否有任何解决方法或修复方法?

最佳答案

SKStoreProductViewController 不再支持“写评论”选项。为什么?我真的不知道。它在 iOS6 中做到了。

解决方法是使用“itms-app://”链接打开应用商店。

if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1) {

NSString *appURL = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/%@/app/id%@",
[[NSLocale preferredLanguages] objectAtIndex:0],
@"YOUR_APP_ID"];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:appURL]];

} else {
// your current StoreKit code
}

关于iphone - 在 iOS 7 上禁用 SKStoreProductViewController 速率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19058069/

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