我的应用中有一个 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 脚本上的数字,但找不到任何要编辑的..