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

IOS 11评论页面未打开


                                            <p><p>我可以在 IOS 10 中使用以下代码在应用商店中打开评论页面,但在 IOS 11 中不再可用。</p>

<pre><code> [ openURL:]];
</code></pre>

<p>如何在IOS 11中做到这一点?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您使用 URL 打开评论页面的方法已被弃用。从 iOS 10.3 及更高版本开始,Apple 指示开发人员使用 <a href="https://developer.apple.com/documentation/storekit/skstorereviewcontroller" rel="noreferrer noopener nofollow"><code>SKStore​Review​Controller</code></a> :</p>

<blockquote>
<p><code>SKStore​Review​Controller</code>: An object that controls the process of requesting App Store ratings and reviews from users.</p>
</blockquote>

<p>Objective-C 使用代码:</p>

<pre><code>// Import the store kit
@import StoreKit

// Use the controller to open the review URL
;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于IOS 11评论页面未打开,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/46217605/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/46217605/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: IOS 11评论页面未打开