目标 C:跟踪应用程序使用次数
我正在尝试实现 UIAlertView 来要求用户对应用程序进行评分,但我只希望它在 x 次使用后出现。有办法做到这一点吗?
I'm trying to implement a UIAlertView to ask the user to rate the app, but I only want it to appear after x amount of uses. Is there a way to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用这个开源库: http://arashpayan .com/blog/index.php/2009/09/07/presenting-appirater/
(github项目的链接: https://github.com/arashpayan/appirater/ )
甚至 UIAlertView为您提供了;)
但是要回答您的问题:您可以在每次用户启动应用程序时增加 NSUserDefaults 中的值。
希望这有帮助,
莫西
you could use this open-source library: http://arashpayan.com/blog/index.php/2009/09/07/presenting-appirater/
(link of github project: https://github.com/arashpayan/appirater/ )
Even the UIAlertView is provided for you ;)
But to answer your question: you can increase a value in NSUserDefaults each time the user starts the application.
Hope this helps,
Moszi