Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

**Hello I have been trying to implement iAds into my application the application Succeeds and loading then goes to a white screen I have been working for hours to try, Plz Help!

This is my code:**

.h:

@interface Vampire_Quiz_FinalViewController : UIViewController <ADBannerViewDelegate>

{

 ADBannerView *adView;

 BOOL bannerIsVisible;

}

@property (nonatomic,assign) BOOL bannerIsVisible;

-(IBAction)V;
-(IBAction)A;
-(IBAction)I;

@end

.m:

@implementation Vampire_Quiz_FinalViewController

- (IBAction)V;

{

 Vork *V = [[Vork alloc] initWithNibName:nil bundle:nil];

 [self presentModalViewController:V animated:NO];

}
- (IBAction)A;

{

 About *A = [[About alloc] initWithNibName:nil bundle:nil];

 [self presentModalViewController:A animated:NO];

}
- (IBAction)I;

{

 Instructions *I = [[Instructions alloc] initWithNibName:nil bundle:nil];

 [self presentModalViewController:I animated:NO];

}

- (void)dealloc {
    [super dealloc];
}

- (void)viewDidLoad {

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

 adView.frame = CGRectOffset(adView.frame, 0, -50);

 adView.requiredContentSizeIdentifiers = [NSSet setWithObject:ADBannerContentSizeIdentifier320x50];

 adView.currentContentSizeIdentifier = ADBannerContentSizeIdentifier320x50;

 [self.view addSubview:adView];

 adView.delegate=self;

 self.bannerIsVisible=NO;

 [super viewDidLoad];

}

@synthesize bannerIsVisible;

- (void)bannerViewDidLoadAd:(ADBannerView *)banner

{

 if (!self.bannerIsVisible)

 {

  [UIView beginAnimations:@"animateAdBannerOn" context:NULL];

  // banner is invisible now and moved out of the screen on 50 px

  banner.frame = CGRectOffset(banner.frame, 0, 50);

  [UIView commitAnimations];

  self.bannerIsVisible = YES;

 }

}



- (void)bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error

{

 if (self.bannerIsVisible)

 {

  [UIView beginAnimations:@"animateAdBannerOff" context:NULL];

  // banner is visible and we move it out of the screen, due to connection issue

  banner.frame = CGRectOffset(banner.frame, 0, -50);

  [UIView commitAnimations];

  self.bannerIsVisible = NO;

 }

}



@end

I don't think the code is the problem, to me it seems to be a connections problem this is what I have in interface builder! This is what I have setup (now) in my connections

Links:

VIEW (http://postimage.org/image/2tp0d4zs4/)

FILES OWNER (http://postimage.org/image/2toyplnac/)

AD VIEW CONTROLLER (http://postimage.org/image/2toveiyas/)

Thanks!

share|improve this question
Retagged for you, in the future please tag questions better – Richard J. Ross III Nov 6 '10 at 21:56

1 Answer

See my comments in another post: iAd error "Ad inventory unavailable" (Apple Sample code also not working)

share|improve this answer
That doesn't seen to be the problem – Simon Nov 6 '10 at 23:14

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.