I have created an app that only runs in landscape mode. I am attempting to make it so that the add will stretch across a screen in landscape. Recent questions state that
[self.bannerView setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
should give me the desired effect, but this is not the case. I create the banner programmatically. The code for my banner is
//allocate add banner
self.bannerView = [[ADBannerView alloc]initWithAdType:ADAdTypeBanner];
[self.bannerView setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
//_bannerView.currentContentSizeIdentifier = ADBannerContentSizeIdentifierLandscape;
/*CGRect contentFrame = self.view.bounds;
CGRect bannerFrame = _bannerView.frame;
contentFrame.size.height -= _bannerView.frame.size.height;
bannerFrame.origin.y = contentFrame.size.height;
self.bannerView.frame = bannerFrame;*/
[self.view addSubview:self.bannerView];
All the delegate methods are included later in the project.
I managed to fix it by forcing the iAD to be the width of the view