Using iAd. Getting few warnings. Below is the code I have put in AppDelegate.m
What is missing?
Warnings are indicated with end of code line
-(void)onEnter
{
[super onEnter]; //<-- NSObject may not respond to this
adView = [[ADBannerView alloc]initWithFrame:CGRectZero];
adView.delegate = self;
adView.requiredContentSizeIdentifiers = [NSSet setWithObjects: ADBannerContentSizeIdentifierLandscape, ADBannerContentSizeIdentifierLandscape, nil];
adView.currentContentSizeIdentifier = ADBannerContentSizeIdentifierLandscape;
[[[CCDirector sharedDirector] openGLView] addSubview:adView];
adView.hidden = YES;
}
-(void)onExit
{
adView.delegate = nil;
[adView removeFromSuperview];
[adView release];
adView = nil;
[super onExit]; //<-- NSObject may not respond to this
}
-(void)bannerViewActionDidFinish :(ADBannerView *)banner
{
NSLog(@"bannerViewActionDidFinish called");
[[UIApplication sharedApplication] setStatusBarOrientation :(UIInterfaceOrientation)[[CCDirector sharedDirector] deviceOrientation]];
}
//<-- Instance method deviceOrientation not found (return type defaults to id)
What is wrong? Missing any Class to inherit?
CCNodeso you need to inherit from that, notNSObject– borrrden Jul 4 '12 at 13:59