I placed my code for iAd/AdMob ads in...
-(void)viewWillAppear:(BOOL)animated{}
Ads work perfectly fine the way I have them now on all iOS devices.
When I connected my iPhone to Xcode and clicked on Product -->Analyze
a message states...
The viewWillAppear:
instance method in UIViewController
subclass 'iPhoneSIX' is missing a [super viewWillAppear:]
call
I just accidentally stumbled upon this Product-->Analyze
thing. Do I really need to add [super viewWillAppear]
even though everything works perfectly fine on all devices as it currently is. Will Apple reject my app if I don't pay attention to the Product-->Analyze
issue navigator?
Also, what does ...
[super viewWillAppear:YES];
What does calling this do?