0

I would like to have RevMob active for all people in my free game. When they make the in-app purchase to eliminate ads, I'd want to eliminate those RevMob ads.

I first have this code in the AppDelegate, to initiate the session

[RevMobAds startSessionWithAppID:@"lalala"];

And then in the viewcontroller I have

> -(void)viewDidLoad {
> [[RevMobAds session] showBanner];
> [[RevMobAds session] showFullscreen];
> [[RevMobAds session] showPopup];

Please help me out or point me in the right direction!!

1 Answers1

0

If you're new to in-app purchase you should check Introduction to In-App Purchases in iOS 6 Tutorial at Ray Wenderlich blog.

Diogo T
  • 2,591
  • 1
  • 29
  • 39
  • Awesome thanks! As far as, disabling the rev mob ads though how would you do that? Making the in-app purchase is the easy part, but how do I disable the ads? – Ros Software Jan 10 '13 at 16:26
  • Before call the methods to show the ad just check if the user have the in-app. – Diogo T Jan 10 '13 at 20:59