我正在寻找代码来询问用户是否要在他们使用该应用程序 X 时间后对其进行评分。我在一些大型游戏应用程序中看到了这一点。

最佳答案

这广泛用于提示对应用程序进行评分。

http://arashpayan.com/blog/2009/09/07/presenting-appirater/

编辑:

入门

Add the Appirater code into your project
Add the CFNetwork and SystemConfiguration frameworks to your project
Call [Appirater appLaunched:YES] at the end of your app delegate's application:didFinishLaunchingWithOptions: method.
Call [Appirater appEnteredForeground:YES] in your app delegate's applicationWillEnterForeground: method.
(OPTIONAL) Call [Appirater userDidSignificantEvent:YES] when the user does something 'significant' in the app.
Finally, set the APPIRATER_APP_ID in Appirater.h to your Apple provided software id.

10-08 18:49