美文网首页
iOS 10.3 应用内评分

iOS 10.3 应用内评分

作者: Kailee | 来源:发表于2017-08-11 17:25 被阅读63次
链接

官方原文
SKStoreReviewController
Ratings and Reviews

引用

iOS 10.3 introduces a new way to ask customers to provide App Store ratings and reviews for your app. Using the SKStoreReviewController
API, you can ask users to rate or review your app while they're using it, without sending them to the App Store. You determine the points in the user experience at which it makes sense to call the API and the system takes care of the rest.
When iOS 10.3 ships to customers, you will be able to respond to customer reviews on the App Store in a way that is available for all customers to see. (This feature will also be available on the Mac App Store.)

代码
 if ([[[UIDevice currentDevice] systemVersion] doubleValue] >= 10.3)
 {
        [SKStoreReviewController requestReview];
 }
通过查看文档 Discussion 总结

1.苹果禁止在应用内通过按钮点击或者用户交互调用这个方法;
2.在开发模式下,评分页面始终可以展示(方便调试),无法提交,TestFlight 测试环境无效果;
3.弹出限制有系统控制,但是依然可以在设置等某些地方添加跳转到App Store引导评论、评分的选项;

有个问题,虽然系统限制了 3 次,是否要客户端限制弹出频率???
TestFlight 也无效,怎么测试???
important

如下图,苹果限制了 365 天一个周期只弹 3 次

image.png

相关文章

  • iOS应用内评分

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

  • iOS 10.3 SKStore​Review​Controll

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

  • iOS 应用内评分

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

  • iOS 10.3 应用内评分

    链接 官方原文SKStoreReviewControllerRatings and Reviews 引用 iOS ...

  • iOS App内部评分&&评价

    1、App内评分 在iOS10.3之后官方API提供了应用内就能让用户给App评分的功能。官方文档链接:https...

  • ios各个版本内容记录

    iOS10.3 1.APP内打开评分弹框

  • iOS 10.3 应用内评分 SKStoreReviewCont

    写在前面 iOS 10.3 开放了一个新的接口,可以实现用户在应用内评分,不需要跳转到App Store。 苹果开...

  • iOS 应用内评分

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

  • 用户评论的几种解决方案

    应用内打开 Appstore 内的应用信息页面 #import 应用内弹框提醒用户评论 iOS 10.3之后可用 ...

  • iOS App内评分

    App内评分 苹果在iOS 10.3中增加了App评分的新API,用户可以直接在App内评分,而不用跳转到App ...

网友评论

      本文标题:iOS 10.3 应用内评分

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