SKStoreReviewController之程序内评价

在iOS 10.3出现之前,App实现评价方式一般有两种:

(一)deep link调用。在app 链接地址后面拼上action=write-review这种方式可以实现程序内评价;

(二)App跳转。

NSURL*url=[NSURLURLWithString:
 @"itms-apps://itunes.apple.com/cn/app/XXX/idXXX?mt=XXX"]; 
[[UIApplicationsharedApplication] openURL:url];

在iOS 10.3出现之后,App实现评价方式又多了一种:程序内评价。苹果提供一个类SKStoreReviewController,可以帮助我们实现在app内部的评价,使用起来很简单,代码如下:

[SKStoreReviewController requestReview];

UI效果如下:

SKStoreReviewController之程序内评价_第1张图片

点赞之后的效果图如下:

SKStoreReviewController之程序内评价_第2张图片

SKStoreReviewController的优点:

(一)比较人性化,用户体验好;

(二)使用简单;

SKStoreReviewController的缺点:

(一)Apple有一些相应的限制,API里有详细的说明,如下:

SKStoreReviewController之程序内评价_第3张图片

而且我们在测试的时候,“提交”按钮是不能用的,官方说明如下:

"When you call this method while your app is still in development mode, a rating/review request view is always displayed so that you can test the user interface and experience. However, this method has no effect when you call it in an app that you distribute using TestFlight."

大致意思就是说测试的时候只有用到TestFlight测试,“提交”按钮才能点击。

(二)Apple 限制开发者在一年最多只能向用户调用三次评分UI。

(三)只可以评分,不能写评语;

总结

上述的三种评价方式,我们在开发中该如何选择呢?答案很简单:根据需求来定。

更多文章

CocoaPods开源库的搭建
CocoaPods搭建私有库
CocoaPods搭建私有库遇到问题
CocoaPods私有库的升级维护
SKStoreReviewController之程序内评价
App应用程序图标的动态更换
开源框架 MGJRouter_Swift
iOS的MVP设计模式
iOS插件化
iOS FMDB的使用
Swift之ReactiveSwift
OC之ReactiveCocoa
OC之ReactiveCocoa进阶
iOS 性能考虑

SKStoreReviewController之程序内评价_第4张图片

你可能感兴趣的:(SKStoreReviewController之程序内评价)