ios - 如何测试 iOS "Rate My App"功能
<p><p>我正在尝试将“评价我的应用”功能添加到尚未发布的 iOS 应用中。 </p>
<p>我有一个简单的函数,如下图:</p>
<pre><code> let alert = UIAlertController(title: "Rate Us", message: "Thanks for using <APP NAME>", preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "Rate <APP NAME>", style: UIAlertActionStyle.Default, handler: { alertAction in
UIApplication.sharedApplication().openURL(NSURL(string : "itms-apps://itunes.apple.com/app/<ITUNES CONNECT APP ID>")!)
alert.dismissViewControllerAnimated(true, completion: nil)
}))
alert.addAction(UIAlertAction(title: "No Thanks", style: UIAlertActionStyle.Default, handler: { alertAction in
NSUserDefaults.standardUserDefaults().setBool(true, forKey: "neverRate")
alert.dismissViewControllerAnimated(true, completion: nil)
}))
alert.addAction(UIAlertAction(title: "Maybe Later", style: UIAlertActionStyle.Default, handler: { alertAction in
alert.dismissViewControllerAnimated(true, completion: nil)
}))
self.presentViewController(alert, animated: true, completion: nil)
</code></pre>
<p>如何测试这是否有效? </p>
<p>我的应用尚未提交,我想确保代码正常运行。 </p>
<p>我收到提醒,当我点击给我们评分时,它会将我重定向到应用商店:</p>
<p> <a href="http://i.stack.imgur.com/qQQQS.png" rel="noreferrer noopener nofollow">App Store Image Shown</a> </p>
<p>控制台错误:</p>
<pre><code>2016-02-24 18:38:00.302 <APP NAME> _BSMachError: (os/kern) invalid capability (20)
2016-02-24 18:38:00.305 <APP NAME> _BSMachError: (os/kern) invalid name (15)
</code></pre>
<p>我不确定这是否意味着该功能不起作用或其他什么。</p>
<p>非常感谢任何帮助。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>有一个出色的库可以满足您的需求。您可以使用 iRate 库。所有详细信息都可以从以下链接中找到</p>
<p> <a href="https://github.com/nicklockwood/iRate" rel="noreferrer noopener nofollow">https://github.com/nicklockwood/iRate</a> </p>
<p>该库会检查用户是否查看过特定版本,如果没有,则会提示用户对应用进行评分。可以配置提示警报的周期。如果您在商店中有一个实时应用程序,也可以在开发时测试该功能。</p>
<p>我希望这会有所帮助...</p></p>
<p style="font-size: 20px;">关于ios - 如何测试 iOS"Rate My App"功能,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/35615501/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/35615501/
</a>
</p>
页:
[1]