ここにある Appirater アプリ レビュー ライブラリをインストールしています: https://github.com/arashpayan/appirater
これらの値を Appirater.m に設定して、レビューを求められるかどうかをテストします。
static NSString *_appId;
static double _daysUntilPrompt = 30;
static NSInteger _usesUntilPrompt = 2;
static NSInteger _significantEventsUntilPrompt = -1;
static double _timeBeforeReminding = 1;
static BOOL _debug = NO;
static id<AppiraterDelegate> _delegate;
static BOOL _usesAnimation = TRUE;
static UIStatusBarStyle _statusBarStyle;
static BOOL _modalOpen = false;
そして、私は自分の AppDelegate を次のように構成しました:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
....
[Appirater appLaunched:YES];
return YES;
}
- (void)applicationWillEnterForeground:(UIApplication *)application
{
[Appirater appEnteredForeground:YES];
}
しかし、アプリを 2 回開いたときに、レビューを追加するように求められませんでした。何が原因なのか誰にもわかりませんか?
ありがとう!