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

I've got my AdMob banners all setup and working but I'm having some trouble positioning them.

This is the code that's in presently to load the bannerview, but I can't quite place how to move it (let's assume to a position of 100, 100)

Can anyone help?

Regards David

  bannerView_ = [[GADBannerView alloc] initWithAdSize:kGADAdSizeFullBanner];
bannerView_.adUnitID = @"a14ff98b8ab890d";
bannerView_.rootViewController = self;
[self.view addSubview:bannerView_];
  [bannerView_ loadRequest:[GADRequest request]];
share|improve this question

1 Answer

up vote 2 down vote accepted
[bannerView_ setFrame:CGRectMake(100,
                                 100,
                                 bannerView_.bounds.size.width,            
                                 bannerView_.bounds.size.height)];
share|improve this answer
Where would I place that? :) At the start of the provided code:? – David26th Jul 8 '12 at 14:42
no, anywhere between the init line and the end. – coneybeare Jul 8 '12 at 14:44
Thank you kindly. – David26th Jul 8 '12 at 16:00

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.