我想知道最佳做法是什么以及如何在屏幕底部显示广告横幅。我正在使用 phonegap 2.5,我可以让它显示在屏幕顶部。这就是我创建 adBannerView 的方式。
- (void)webViewDidFinishLoad:(UIWebView*)theWebView
{
// Black base color for background matches the native apps
theWebView.backgroundColor = [UIColor blackColor];
adView = [[[ADBannerView alloc] initWithFrame:CGRectZero] autorelease];
//adView.frame = CGRectMake(0, 410, 320, 50); // if you want the banner to be on top of the screen remove this line
adView.delegate = self;
adView.autoresizingMask = UIViewAutoresizingFlexibleWidth;
[theWebView addSubview:adView];
return [super webViewDidFinishLoad:theWebView];
}
我不确定我是否要根据上面注释掉的行来修复位置,因为 iphone (4,5) 具有不同的分辨率。请让我知道如何将其放置在屏幕底部。
谢谢。
我尝试了此链接中的内容,但我收到有关冲突约束的错误