Google AdMob iOS アダプティブバナーを表示したい
Q&A
Closed
解決したいこと
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