6

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

4

3 回答 3

15

您是否尝试过更改视图的框架(我认为是 GADBannerView?)以将其定位在底部而不是顶部?

这是一个示例(您应该将占位符替换为正确的属性:bannerView.frame = CGRectMake(0.0, 460 - bannerheight, bannerwidth, bannerheight);


编辑:

您需要做的就是替换这个:

bannerView_ = [[GADBannerView alloc] initWithAdSize:kGADAdSizeBanner];

有了这一切:

// Initialize the banner at the bottom of the screen.
CGPoint origin = CGPointMake(0.0,
                               self.view.frame.size.height -
                               CGSizeFromGADAdSize(kGADAdSizeBanner).height);

// Use predefined GADAdSize constants to define the GADBannerView.
bannerView_ = [[GADBannerView alloc] initWithAdSize:kGADAdSizeBanner
                                                  origin:origin];
于 2012-07-01T23:08:39.707 回答
2
CGFloat height = [UIScreen mainScreen].bounds.size.height;

bannerView_=[[GADBannerView alloc] initWithAdSize:(kGADAdSizeBanner) origin:CGPointMake(0,height-kGADAdSizeBanner.size.height)];
于 2014-04-25T09:27:33.047 回答
0
CGPoint origin = CGPointMake(0.0,bannerHeight);
self.addBanner = [[GADBannerView alloc] initWithAdSize:kGADAdSizeSmartBannerPortrait
                                             origin:origin];

这适用于所有 iphone 和 iPad

于 2016-10-18T11:32:03.103 回答