Swift: SKStoreReviewController - 多久可以调用一次?

Swift: SKStoreReviewController - how often can it be called?

文档中说应用程序每年可以通过 SKSToreReviewController 三次要求用户进行评分。

大多数人建议在 UserDefaults 中保存一个变量,并在使用几次后调用该函数。如果您每年调用该函数超过 3 次,会发生什么情况? App Store 会忽略这些电话并在一年后再次要求评分,还是会出现某种错误?

如果应用已更新(即从 1.0 版跳转到 2.0 版),会发生什么情况? 3个请求会被重置吗?

简而言之,您选择合适的时间显示警报,但系统将决定是否实际显示警报。所以不用担心 "over-calling" 只要你不把它称为对用户交互的响应。

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.

突出显示我的。

https://developer.apple.com/documentation/storekit/skstorereviewcontroller/2851536-requestreview

关于你的第二个问题,我能找到的关于它可能显示多少次的唯一参考是“每年3次”。它没有提到每个应用程序版本或更新 3 次。明智地使用这个 API。