I would like to provide an in-app purchase to unlock all features which includes hiding the iAd bannerView.
I currenlty have the bannerView set as a property, but when I try to set the view to hidden, it doesnt disappear.
I've also tried [bannerView removeFromSuperView] and it's still visible. I've tried moving it off the screen by changing it's x,y coords.
The view's place holder is in my XIB and confirmed it's wired up to my property IBOutlet *bannerView.
Does the bannerView not behave like normal views? Is this sort of thing not allowed?
if(isFullVersion)
{
removeAdsButton.hidden = YES;
bannerView.hidden = YES; // DOESNT WORK
[bannerView removeFromSuperview]; // DOESNT WORK
}