1

iOS ゲームに GADInterstitial を追加したいので、アプリがアクティブになるたびに Interestitial を表示したいと考えています。私の AppDelegate.m では、メソッド applicationDidBecomeActive で: 私は自分のメソッドを呼び出します

-(void)splashInterstitial{
interestitial = [[GADInterstitial alloc] init];
interestitial.adUnitID = ADMOB_ID;
interestitial.delegate = self;
[interestitial loadAndDisplayRequest:[self createRequest] usingWindow:self.window   initialImage:nil];

}

しかし、広告を閉じるたびに警告が表示されます:

attempt to dismiss modal view controller whose view does not currently appear. self = <GADInterstitialAppController: 0x5d3ed0> modalViewController = <GADWebAppViewController: 0x5d1ca0>

誰かがその警告を受けましたか?

4

1 に答える 1