在GADBannerView上设置背景图像

时间:2013-05-20 10:29:39

标签: iphone ios

我想问一下在加载广告时如何设置background image,直到它显示广告。

AdMob = [[GADBannerView alloc]init];
AdMob.frame = CGRectMake(0, 0 , GAD_SIZE_300x250.width, GAD_SIZE_300x250.height);
AdMob.backgroundColor = [UIColor grayColor];
AdMob.adUnitID = [GlobalVariable sharedInstance].PID_IOS_PHONE;
AdMob.rootViewController = self;
GADRequest *request = [GADRequest request];
[AdMob loadRequest:request];

1 个答案:

答案 0 :(得分:3)

您可以使用以下代码将图像设置为背景: -

AdMob.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"Background.png"]];