arashpayan / appirater

A utility that reminds your iPhone app's users to review the app.

Home Page:http://arashpayan.com/blog/2009/09/07/presenting-appirater/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Help on setup AppiRater

diegoventura opened this issue · comments

How do i use setSignificantEventsUntilPrompt and setTimeBeforeReminding properties? Thanks

Call them when you're setting up AppiRater (usually in your AppDelegate) like this:

[Appirater setAppId:@"552035781"];
[Appirater setDaysUntilPrompt:1];
[Appirater setUsesUntilPrompt:10];
[Appirater setSignificantEventsUntilPrompt:-1];
[Appirater setTimeBeforeReminding:2];
[Appirater setDebug:YES];

See the docs and header file for more info.

Hi! In fact my question is what will change is my app behaviour if i use this two properties. Do you have any detailed description abou this two properties (setSignificantEventsUntilPrompt and setTimeBeforeReminding)?

Yes, take a look at that header file. It has descriptions.

On Tuesday, January 15, 2013 at 3:29 PM, diegoventura wrote:

Hi! In fact my question is what will change is my app behaviour if i use this two properties. Do you have any detailed description abou this two properties (setSignificantEventsUntilPrompt and setTimeBeforeReminding)?


Reply to this email directly or view it on GitHub (#90 (comment)).

Ok. Thanks for the help!