美文网首页
iOS应用评分

iOS应用评分

作者: 程序猿川哥 | 来源:发表于2017-11-23 20:44 被阅读0次

引言

  • 项目需求获得大量评分,评分高评论多,App排名高

痛点

  • 购买评论刷排名有风险,苹果有审核机制
  • 老版本UIApplication.shared.open(url, options: options, completionHandler: nil)跳出当前App,进入AppStore评价则会打断用户操作,而且较为繁琐,成效低

解决方案

  • 观看WWDC发现新出的SKStoreReviewController刚好能满足项目需求

class func requestReview()

Use the requestReview() method to indicate when it makes sense within the logic of your app to ask the user for ratings and reviews within your app.

Tells StoreKit to ask the user to rate or review your app, if appropriate.

  • 如果合适的话StoreKit就会要求用户对你的App进行评分
  • 不用再去管URL只需要调用SKStoreReviewController.requestReview()这句代码就完成所有的需求

注意

Although you should call this method when it makes sense in the user experience flow of your app, the actual display of a rating/review request view is governed by App Store policy. Because this method may or may not present an alert, it's not appropriate to call it in response to a button tap or other user action.

  • 尽管你应该调用这个方法来提升用户操作体验,但是评分界面到底显不显示是取决于苹果的策略,开发者无法控制,不要在按钮的点击里面放入这句代码

Note
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.

  • 当你在开发模式下你调用这句代码,评分界面就会显示,但是在发布模式下这个出不出现就依赖于苹果的策略了

  • 一年苹果只允许弹出三次,所以最好在用户完成什么操作多少次属于比较忠实的用户才调用这句代码

相关文章

  • iOS 应用内评分

    iOS 应用内评分 iOS10.3允许开发者敦促用户在 App Store 上对应用进行评分。整个评分过程直接在 ...

  • iOS应用内评分

    iOS10.3之后,苹果引入一种新的应用内评分评论机制, 用户将可在应用内直接对应用进行评分。 iOS 10.3 ...

  • iOS 10.3 SKStore​Review​Controll

    从 iOS 10.3 开始,支持应用内直接评分。

  • iOS 应用评分

    跳转App Store的评论页进行评分static NSString * const wAPPID = @"itu...

  • iOS应用评分

    引言 项目需求获得大量评分,评分高评论多,App排名高 痛点 购买评论刷排名有风险,苹果有审核机制 老版本UIAp...

  • iOS应用跳转到appstore评分

    iOS应用跳转到appstore评分 标签(空格分隔): IOS 跳转到应用评价页 跳转到应用详情页 appid是...

  • iOS 应用内评分

    支持 iOS 版本:iOS10.3 以上限制条件:1.每年最多使用 3 次弹窗来请求用户评分。2.只能评星,不能写...

  • iOS 应用内评分

    iOS10.3允许开发者敦促用户在 App Store 上对应用进行评分。整个评分过程直接在 app 内完成并提交...

  • iOS应用内评分

    iOS应用内评分 SKStoreReviewController 控制向用户请求应用商店评级和评论的过程的对象An...

  • IOS 应用内评分

    有两种方式可以实现该功能:方式一:跳转APP Store 应用详情,进行评分 将下面的Apple ID 替换为你自...

网友评论

      本文标题:iOS应用评分

      本文链接:https://www.haomeiwen.com/subject/vtnavxtx.html