SKStoreProductViewController

SKStoreProductViewController

因此,我注意到Apple更改了SKStoreProductViewController,从而禁用了“写评论”按钮。
是否有解决此问题的方法或解决方案?

最佳答案

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

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

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/

10-11 23:54