Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am testing with this:

  CGSize adSize = [adWhirlView actualAdSize];
NSLog(@"ad size received: %f x %f",adSize.width, adSize.height);

However, the width that is returned is always the width of the device orientation, no matter what the ad actually looks like. This is primarily an issue with adMob because its ads may be much less than the device's width and thus appear as flush left instead of centered, even though the adsize returned above is actually showing the ads are supposed to be full width.

Anyone else encountered this and have a suggestion on how to deal with it? If you don't know an ad's actual width, you cannot really center it properly.

share|improve this question
How are you defining your AdWhirlView? – Eric Leichtenschlag Jan 30 '12 at 21:40
i'm using the standard mechanism in the adWhirl documentation: self.adWhirlView = [AdWhirlView requestAdWhirlViewWithDelegate:self]; and the rest of the standard lines for opening an adWhirl view – Fellowshee Feb 1 '12 at 14:16

2 Answers

up vote 0 down vote accepted

I have the same problem. I have adWhirl with iAd & AdMob ads enabled and I made like this: ........

CGSize adSize = [adWhirlView actualAdSize];
 ......
if (adSize.height==50){
 // this is AdMob ad, change x position

 } else {
 // iAd ad, leave by default
 }
share|improve this answer
i'll give it a try, however adMob ads are often taller than 50 pixels in my experience – Fellowshee Feb 1 '12 at 0:16

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"];
  }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.