-
Notifications
You must be signed in to change notification settings - Fork 734
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Significant event issue? #297
Comments
You shouldn't need to call |
Sorry I updated my question. I would like the rating dialog to display immediately after 5 significant events have occurred. |
So do I need to use logEvent to increment and a condition of eventCount with PromptForRating ? But surely I need to reset the event count ? Actually I shouldn't really show it again afterwards. |
If you use |
Thanks, is there a method to show the dialog just based on reaching If not if I checked the |
I'm not sure if this is an issue or I've setup something wrong, however on my significant event, the prompt to rate the app happens each time, however I have eventsUntilPrompt set to 5.
I would like the rating dialog to display immediately after 5 significant events have occurred.
Here's my implementation...
App Delegate
#ifdef FREEMIUM
[iRate sharedInstance].appStoreID = 123;
#else
[iRate sharedInstance].appStoreID = 456;
#endif
Call significant event
Looking back at the documentation, promptForRating happens immediately, should I be using promptIfAllCriteriaMet instead? Oh I think I may need to use logEvent, however I'm not sure how I then call iRate? Maybe I need to check eventCount then use PromptForRating, however do I then need to reset the number of events ?
The text was updated successfully, but these errors were encountered: