BannerView not showing iAd

1.4k Views Asked by At

I have gone through many tutorials and believe have done everything, but still can not figure it out, the bannerview does not show ad anytime, I have even put log messages in bannerViewDidLoadAd, didFailToReceiveAdWithError , but those do not get displayed also. Here is the code

I have registered my account in iTunesConnect under monetize, but tax information is pending.Also my app runs only in potrait mode, so no need to handle landscape.

In .h file :

#import <UIKit/UIKit.h>
#import <iAd/iAd.h>

@interface MBViewController : UIViewController <ADBannerViewDelegate>
@property (strong, nonatomic) ADBannerView *bannerView;
@end

In .m file :

- (void)viewDidLoad
{
    [super viewDidLoad];

    _bannerView = [[ADBannerView alloc] initWithFrame:CGRectZero];
    _bannerView.delegate = self;
    _bannerView.hidden = YES;

    [self.view addSubview:_bannerView];
}

- (void)bannerViewDidLoadAd:(ADBannerView *)banner
{
    NSLog(@"bannerViewDidLoadAd");
    CGRect bannerFrame = CGRectMake(0.0, (self.view.frame.size.height - 50), 0.0, 0.0);
    [self.bannerView setFrame:bannerFrame];
    self.bannerView.hidden = NO;
}

-(void)bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error
{
    NSLog(@"Error receive ad: %@", error);
    self.bannerView.hidden = YES;
}

- (BOOL)bannerViewActionShouldBegin:(ADBannerView *)banner
               willLeaveApplication:(BOOL)willLeave
{
    return YES;
}

- (void)bannerViewActionDidFinish:(ADBannerView *)banner
{

}
2

There are 2 best solutions below

3
On

What about giving a size to your bannerView ?

From your code:

_bannerView = [[ADBannerView alloc] initWithFrame:CGRectZero];

Width = 0, Height = 0

And here you just update the position:

CGRect bannerFrame = CGRectMake(0.0, (self.view.frame.size.height - 50), 0.0, 0.0);

Width = 0, Height = 0

0
On

I had the same problem. I ended up going to iTunes Connect, and clicked on the iAd section. Then I agreed to some contract and went to the iAd Workbench area. There, I didn't bother doing anymore because I'm not at the point where I want to advertise the game I'm developing yet.

I didn't change any code, but my iOS game was still running. To my surprise, the ads started to show up right after I agreed to the iAd agreement in iTunes Connect!