Try:
The presentation policy determines whether the time framework fully controls or should be executed only when the -requestInterstitialAdPresentation application is accessed. By default, the policy is "No", therefore it is able to present an interstitial value, it should be changed to "Automatic" or "Manual".
@property (nonatomic, assign) ADInterstitialPresentationPolicy interstitialPresentationPolicy NS_AVAILABLE_IOS(7_0);
Sort of:
self.interstitialPresentationPolicy = ADInterstitialPresentationPolicyManual;
You may need to import iAd / UIViewControlleriAdAdditions.h
source
share