最初の 6 回の試行でレート アラート ビューを表示していますが、その後は Irate SDK を使用して 30 日ごとに表示する必要があります。どうすればそれを示すことができますか。助けてください。
**First 6 attempts :**
[iRate sharedInstance].applicationBundleID = @"Bundle id";
[iRate sharedInstance].onlyPromptIfLatestVersion = NO;
[iRate sharedInstance].eventsUntilPrompt = 6;
[iRate sharedInstance].daysUntilPrompt = 0;
**to call for 30 days :**
[iRate sharedInstance].applicationBundleID = @"Bundle id";
[iRate sharedInstance].onlyPromptIfLatestVersion = NO;
[iRate sharedInstance].eventsUntilPrompt = 0;
[iRate sharedInstance].daysUntilPrompt = 30;