菜鸟教程小白 发表于 2022-12-13 15:39:08

ios - swift : SKStoreReviewController - how often can it be called?


                                            <p><p>文档说,应用每年可以通过 SKSToreReviewController 要求用户 3 次进行评分。</p>

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

<p>如果应用程序已更新(即从 1.0 版跳转到 2.0 版)会发生什么?这 3 个请求会被重置吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>简而言之,您选择适当的时间显示警报,但系统将决定是否实际显示警报。因此,只要您不将其称为对用户交互的响应,就不必担心“过度调用”。</p>

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

<p>突出显示我的。</p>

<p> <a href="https://developer.apple.com/documentation/storekit/skstorereviewcontroller/2851536-requestreview" rel="noreferrer noopener nofollow">https://developer.apple.com/documentation/storekit/skstorereviewcontroller/2851536-requestreview</a> </p>

<p>至于您的第二个问题,我能找到的关于它可能显示多少次的唯一引用是“每年 3 次”。它没有提到每个应用程序版本或更新 3 次。明智地使用此 API。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios -swift: SKStoreReviewController - how often can it be called?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/46355044/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/46355044/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - swift : SKStoreReviewController - how often can it be called?