I implemented the Appirater
in my application.It works fine. But when i click on Rate this App button on Appirater
popup, it navigates me to Appstore to rate the app. when i click on 'Write a Review' button in AppStore and again same Page is coming, when i click Write review button for the second time, then it is allowing me to Review the app. How to fix this?This is my code
[Appirater setAppId:@"AppId"];
[Appirater setDaysUntilPrompt:0];
[Appirater setUsesUntilPrompt:3];
[Appirater setSignificantEventsUntilPrompt:-1];
[Appirater setDebug:NO];
[Appirater appLaunched:YES];
I had the same issue, and I had to move
[Appirater appEnteredForeground:YES];
from:to:
I had put it in the wrong place initially