GoogleMobileAds Framework Reference

GADInterstitialDelegate

protocol GADInterstitialDelegate : NSObjectProtocol

Delegate for receiving state change messages from a GADInterstitial such as interstitial ad requests succeeding/failing.

  • Called just before presenting an interstitial. After this method finishes the interstitial will animate onto the screen. Use this opportunity to stop animations and save the state of your application in case the user leaves while the interstitial is on screen (e.g. to visit the App Store from a link on the interstitial).

    Declaration

    Swift

    optional func interstitialWillPresentScreen(_ ad: GADInterstitial)
  • Called when |ad| fails to present.

    Declaration

    Swift

    optional func interstitialDidFail(toPresentScreen ad: GADInterstitial)
  • Called before the interstitial is to be animated off the screen.

    Declaration

    Swift

    optional func interstitialWillDismissScreen(_ ad: GADInterstitial)
  • Called just after dismissing an interstitial and it has animated off the screen.

    Declaration

    Swift

    optional func interstitialDidDismissScreen(_ ad: GADInterstitial)
  • Called just before the application will background or terminate because the user clicked on an ad that will launch another application (such as the App Store). The normal UIApplicationDelegate methods, like applicationDidEnterBackground:, will be called immediately before this.

    Declaration

    Swift

    optional func interstitialWillLeaveApplication(_ ad: GADInterstitial)