iOS 应用跳转评分OC Swift 版本和SotreKit

在打开一些APP 会弹出需要去APPSTORE 评分 下面贴出关键代码

NSString *appid = @"725296055”;

NSString *str = [NSString stringWithFormat:

                 @"itms-apps://itunes.apple.com/cn/app/id%@?mt=8", appid];


[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];

步骤 一 获取 APPID 步骤二 进行跳转。

Swift 版本和SotreKit

     if #available(iOS 10.3, *)
                  {
                   SKStoreReviewController.requestReview()
                  }
                else
                {
                    open(scheme: "itms-apps://itunes.apple.com/cn/app/id1290158252?mt=8")
                }

你可能感兴趣的:(iOS 应用跳转评分OC Swift 版本和SotreKit)