Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Not familiar with iRate, I often uses <a href="https://github.com/arashpayan/appirater" rel="noreferrer">Appirater</a>. It is <strong>extremely easy</strong> to implement. Simple call</p> <pre><code>[Appirater setAppId:@"380245121"]; // Change for your "Your APP ID" [Appirater setDaysUntilPrompt:0]; // Days from first entered the app until prompt [Appirater setUsesUntilPrompt:5]; // Number of uses until prompt [Appirater setTimeBeforeReminding:2]; // Days until reminding if the user taps "remind me" //[Appirater setDebug:YES]; // If you set this to YES it will display all the time </code></pre> <p>to have it show after the user have entered the app the 5th time! </p> <p>Say you have done <code>[Appirater setUsesUntilPrompt:5]</code> and <code>[Appirater setDaysUntilPrompt:2]</code> it means that the time from first app entry has to be 2 days (or more) <strong>AND</strong> the number of app uses (number of times the application entered foreground/launched) has to be 5 times (or more).</p> <p>Sample code for your purpose:</p> <pre><code>- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { [Appirater setAppId:@"380245121"]; // Change for your "Your APP ID" [Appirater setDaysUntilPrompt:0]; // Days from first entered the app until prompt [Appirater setUsesUntilPrompt:5]; // Number of uses until prompt [Appirater setTimeBeforeReminding:2]; // Days until reminding if the user taps "remind me" //[Appirater setDebug:YES]; // If you set this to YES it will display all the time //... Perhaps do stuff [Appirater appLaunched:YES]; return YES; } - (void)applicationWillEnterForeground:(UIApplication *)application{ [Appirater appEnteredForeground:YES]; } </code></pre> <p>If your app is out on App Store you can find the app ID in the URL:</p> <p><img src="https://i.stack.imgur.com/wNWdr.png" alt="enter image description here"></p> <p>If it is not yet released you can find it by going to <a href="https://itunesconnect.apple.com/" rel="noreferrer">iTunes Connect</a> ->> tapping "Manage Your Apps" -->> tapping your app. You app ID will be seen here <img src="https://i.stack.imgur.com/L29hO.png" alt="enter image description here"></p> <p>Hope it helps!</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload