GoogleMobileAds Framework Reference

GADCustomNativeAdDelegate

@protocol GADCustomNativeAdDelegate <NSObject>

Identifies native ad assets.

  • Called just before presenting the user a full screen view, such as a browser, in response to clicking on an ad. Use this opportunity to stop animations, time sensitive interactions, etc.

    Normally the user looks at the ad, dismisses it, and control returns to your application with the customNativeAdDidDismissScreen: message. However, if the user hits the Home button or clicks on an App Store link, your application will end. The next method called will be the applicationWillResignActive: of your UIApplicationDelegate object.

    Declaration

    Swift

    optional func customNativeAdWillPresentScreen(_ nativeAd: GADCustomNativeAd)

    Objective-C

    - (void)customNativeAdWillPresentScreen:(nonnull GADCustomNativeAd *)nativeAd;
  • Called just before dismissing a full screen view.

    Declaration

    Swift

    optional func customNativeAdWillDismissScreen(_ nativeAd: GADCustomNativeAd)

    Objective-C

    - (void)customNativeAdWillDismissScreen:(nonnull GADCustomNativeAd *)nativeAd;
  • Called just after dismissing a full screen view. Use this opportunity to restart anything you may have stopped as part of customNativeAdWillPresentScreen:.

    Declaration

    Swift

    optional func customNativeAdDidDismissScreen(_ nativeAd: GADCustomNativeAd)

    Objective-C

    - (void)customNativeAdDidDismissScreen:(nonnull GADCustomNativeAd *)nativeAd;