我在我的application.It中实现了Appirater,运行良好。但当我点击Appirater弹出窗口上的Rate this app按钮时,它会导航到应用商店来对应用程序进行评级。如何解决这个问题?这是我的代码
[Appirater setAppId:@"AppId"];
[Appirater setDaysUntilPrompt:0];
[Appirater setUsesUntilPrompt:3];
[Appirater setSignificantEventsUntilPrompt:-1];
[Appirater setDebug:NO];
[Appirater appLaunched:YES];发布于 2014-05-14 03:12:51
我也遇到了同样的问题,我不得不将[Appirater appEnteredForeground:YES];从:
- (void)applicationDidBecomeActive:(UIApplication *)application至:
- (void)applicationWillEnterForeground:(UIApplication *)application
{
[Appirater appEnteredForeground:YES];
}我一开始把它放错地方了
https://stackoverflow.com/questions/20633520
复制相似问题