コードの 2 つの部分があります
プリロード
interestial = [[GADInterstitial alloc] init];
[interestial loadRequest:request]
見せる
[interestial presentFromRootViewController:]
次回インタースティシャルを正しく表示するにはどうすればよいですか? ARCありとなし
プリロード
if(arc) [interstitial release];
interstitial = [[GADInterstitial alloc] init];
[interstitial loadRequest:request]
見せる
[interstitial presentFromRootViewController:self]
- また
初期化
interstitial = [[GADInterstitial alloc] init];
プリロード
[interstitial loadRequest:request]
見せる
[interstitial presentFromRootViewController:self]
- また
初期化
interstitial = [[GADInterstitial alloc] init];
[interstitial loadRequest:request];
プリロード
// nothing
見せる
[interstitial presentFromRootViewController:self];
[interstitial loadRequest:request];
最後のオプションが正しくない場合、present が呼び出された後、プリロードを待つ必要がある時間はどれくらいですか? または、デリゲートをリッスンするか、ユーザーアクションがプリロードを開始するのを待つ必要がありますか?