kazu23shima
@kazu23shima

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

Google AdMob iOS アダプティブバナーを表示したい

解決したいこと

Google AdMob iOS アダプティブバナーを表示したい。

現在の状況

Xcode Objective-C で iPhoneアプリ(iOS)を作っています。
現在、Google AdMob で 320x50のアンカーバナーの広告を表示してリリースしています。
Google Mobile Ads SDK バージョン 8.1.0 です。

現在リリースしているアプリを修正して、アダプティブバナー(テスト用)を表示する変更をし
実機で実行して見ましたが、
アダプティブバナーが表示されません。

修正は下記のWebページのサンプルコードをほぼそのまま参照して修正しました。
https://developers.google.com/admob/ios/banner/adaptive

調べてみると下記コードの self.bannerView.adSize の値( width , height )がゼロになっています。
GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth を
GADPortraitAnchoredAdaptiveBannerAdSizeWithWidth に変更して実行しても同じ結果でした。

      // Step 3 - Get Adaptive GADAdSize and set the ad view.
      // Here the current interface orientation is used. If the ad is being
      // preloaded for a future orientation change or different orientation, the
      // function for the relevant orientation should be used.
      self.bannerView.adSize = GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth(viewWidth);

以上です。

0

1Answer

質問の内容が自己解決したので報告します。
詳細内容については下記の記事を作成しましたので参照してください。

以上

0Like

Your answer might help someone💌