This is my first time using RevMob but it seemed like it should be simple enough, however I'm having a hard time hiding banner ads.
- (void)viewDidLoad
{
[super viewDidLoad];
[[RevMobAds session] showBanner];
// Do any additional setup after loading the view.
}
-(IBAction)startGame:(id)sender
{
[[RevMobAds session] hideBanner];
}
When the view loads the banner is there on the bottom, but when I call the function startGame (via a button in the same view) it doesn't go away, the banner remains.