我希望我的应用程序要求用户在应用程序商店中评分/撰写评论,这就是我尝试从 Arash Payan 实施 Appirater 的原因。但它根本不起作用 - 无论我多久尝试一次,都不会显示警告。
我做了什么:
- 从https://github.com/arashpayan/appirater/下载 Appirater
遵循自述文件中提供的这些步骤:
- 将 Appirater 代码添加到您的项目中
- 将 CFNetwork 和 SystemConfiguration 框架添加到您的项目中
- 在您的应用委托的 application:didFinishLaunchingWithOptions: 方法结束时调用 [Appirater appLaunched:YES]。
- 在您的应用委托的 applicationWillEnterForeground: 方法中调用 [Appirater appEnteredForeground:YES]。
- (可选)当用户在应用程序中执行“重要”操作时调用 [Appirater userDidSignificantEvent:YES]。
- 最后,将 Appirater.h 中的 APPIRATER_APP_ID 设置为 Apple 提供的软件 ID。
我还更改了警报消息,因为我的语言不是英语。我把使用次数改成了5次...
我做错了什么/我该如何解决?非常感谢!