xcodeでアドモブを使って広告を実装しているのですが、
アプリをリリースして試してみたところ、
一度しか表示されず困っています。
何度も広告を表示したい場合、どのようにすれば良いのか教えていただきたいです。
よろしくお願いいたします。
インタースティシャルとバナー広告です。
swift
1//インタースティシャル広告 2 var interstitial: GADInterstitial! 3 4 5if interstitial.isReady{ 6 interstitial.present(fromRootViewController: self) 7 }else{ 8 print("まだ用意ができていません") 9 } 10 func createAndLoadInterstitial() -> GADInterstitial { 11 let interstitial = GADInterstitial(adUnitID: "") 12 13 interstitial.delegate = self 14 interstitial.load(GADRequest()) 15 return interstitial 16 } 17 18 func interstitialDidDismissScreen(_ ad: GADInterstitial) { 19 interstitial = createAndLoadInterstitial() 20 }
swift
1//banner広告 2 3 @IBOutlet weak var bannerView: GADBannerView! 4 bannerView.adUnitID = "" 5 6 7 8 bannerView.rootViewController = self 9 bannerView.load(GADRequest()) 10 interstitial = createAndLoadInterstitial()
>一度しか表示されず
テスト広告は問題なかったのでしょうか
アプリIDの設定は?
FirebaseでのAdMobでしょうか?
バナーとインタースティシャルと2つありますが両方ともなのですか
など答えずらいですね、
もう少し絞り込んで問題点を明確にしてみたほうがいいと思います
回答1件
あなたの回答
tips
プレビュー