Good day!
I added ads in full screen, everything works only when you first touch on a specific UIView.
How to show ads on every 5th touch of any part of the screen
-(void) viewDidLoad { UITapGestureRecognizer * BanerAppear =[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(bannerApearAdMob)]; [self.selfBannerAdMob addGestureRecognizer:BanerAppear]; self.interstitial = [[GADInterstitial alloc] initWithAdUnitID:@"ca-app-pub-xxxxxxxxx/xxxxxx"]; request1 = [GADRequest request]; request1.testDevices = @[ kGADSimulatorID ]; [self.interstitial loadRequest:request1]; } - (void)bannerApearAdMob{ if (self.interstitial.isReady) { [self.interstitial presentFromRootViewController:self]; } }