0

Appirater在我的应用程序中实现了它。它工作正常。但是,当我在弹出窗口中单击“评价此应用程序”按钮时Appirater,它会将我导航到 Appstore 以对该应用程序进行评价。当我点击 AppStore 中的“写评论”按钮并再次出现相同的页面时,当我第二次点击“写评论”按钮时,它允许我评论该应用程序。如何解决这个问题?这是我的代码

[Appirater setAppId:@"AppId"];
[Appirater setDaysUntilPrompt:0]; 
[Appirater setUsesUntilPrompt:3];
[Appirater setSignificantEventsUntilPrompt:-1]; 
[Appirater setDebug:NO];
[Appirater appLaunched:YES];
4

1 回答 1

0

我有同样的问题,我不得不[Appirater appEnteredForeground:YES];从:

- (void)applicationDidBecomeActive:(UIApplication *)application

至:

- (void)applicationWillEnterForeground:(UIApplication *)application
{
    [Appirater appEnteredForeground:YES];
}

我最初把它放在错误的地方

于 2014-05-13T19:12:51.017 回答