アプリに admob バナーがあり、AdMob が提供するドキュメントを使用して実装しました。唯一の問題は、画面の下部ではなく上部に表示されることです。今、私は長い間探していましたが、それを変更する方法を見つけることができず、この問題を解決するネット上の人を見つけることができません.
誰かがこれを修正する方法を知っていますか?
ありがとう
編集
// Create a view of the standard size at the bottom of the screen.
// Available AdSize constants are explained in GADAdSize.h.
bannerView_ = [[GADBannerView alloc] initWithAdSize:kGADAdSizeBanner];
// Specify the ad's "unit identifier." This is your AdMob Publisher ID.
bannerView_.adUnitID = @"MYID";
// Let the runtime know which UIViewController to restore after taking
// the user wherever the ad goes and add it to the view hierarchy.
bannerView_.rootViewController = self;
[self.view addSubview:bannerView_];
// Initiate a generic request to load it with an ad.
[bannerView_ loadRequest:[GADRequest request]];
すべてのadmobスクリプトで番号を探していましたが、編集するものが見つかりません..