The problem is located in the AdMob adapter:
// Set the frame for this view to match the bounds of the parent adWhirlView.
GADBannerView *view =
[[GADBannerView alloc] initWithFrame:adWhirlView.bounds];
This is a very lousy implementation since AdWhirl is lacking optional delegate methods here. Though this is pretty easy to fix. Simple use one of AdMobs banner sizes and everything will work:
GADBannerView *view =
//[[GADBannerView alloc] initWithFrame:adWhirlView.bounds];
[[GADBannerView alloc] initWithFrame:CGRectMake(0, 0, GAD_SIZE_468x60.width, GAD_SIZE_468x60.height)];
You probably want to fix colors too. There are two bugs concerning colors:
- The AdMob adapter does use the proper delegate methods (adWhirlAdBackgroundColor,adWhirlTextColor). Although, he simply uses the background color for text.
- If the color delegate methods are not implemented, the AdMob adapter does not fallback to the colors you defined in your config.
To fix this, simply locate the code related to colors (right at the beginning of getAd()) and replace it with:
if ((value = [self delegateValueForSelector:
@selector(adWhirlAdBackgroundColor)])) {
[additional setObject:[self hexStringFromUIColor:(UIColor *)value]
forKey:@"color_bg"];
} else {
[additional setObject:[self hexStringFromUIColor:adWhirlConfig.backgroundColor]
forKey:@"color_bg"];
}
if ((value = [self delegateValueForSelector:
@selector(adWhirlTextColor)])) {
[additional setObject:[self hexStringFromUIColor:(UIColor *)value]
forKey:@"color_text"];
} else {
[additional setObject:[self hexStringFromUIColor:adWhirlConfig.textColor]
forKey:@"color_text"];
}
self.adWhirlView = [AdWhirlView requestAdWhirlViewWithDelegate:self];and the rest of the standard lines for opening an adWhirl view – Fellowshee Feb 1 '12 at 14:16