Check the logs to see if you get an error. "Cannot create interstitial connection. This is not ready."
Below code written inside the controller load?
if ([interstitial isReady]) {
[interstitial presentFromRootViewController:self];
}
You need to wait until the ad is fully loaded (especially for interstitial ads). Please change the code to
- (void)interstitialDidReceiveAd:(GADInterstitial *)ad {
if ([interstitial isReady]) {
[interstitial presentFromRootViewController:self];
}
}
source
share