Called before presenting the user a full screen view in response to an ad action. 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 nativeAdDidDismissScreen: message. However, if the user hits the Home button or clicks on an
App Store link, your application will be backgrounded. The next method called will be the
applicationWillResignActive: of your UIApplicationDelegate object.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[[["\u003cp\u003e\u003ccode\u003eGADNativeAdDelegate\u003c/code\u003e identifies native ad assets and handles ad lifecycle events.\u003c/p\u003e\n"],["\u003cp\u003eIt provides methods to track ad impressions, clicks, and swipe gestures.\u003c/p\u003e\n"],["\u003cp\u003eIt includes lifecycle notifications for presenting and dismissing full-screen ad views.\u003c/p\u003e\n"],["\u003cp\u003eIt offers a method to detect when a Google native ad is muted by the user.\u003c/p\u003e\n"]]],[],null,["# GoogleMobileAds Framework Reference\n\nGADNativeAdDelegate\n===================\n\n @protocol GADNativeAdDelegate \u003cNSObject\u003e\n\nIdentifies native ad assets.\n[Ad Lifecycle Events\n-------------------](#/Ad-Lifecycle-Events)\n\n- `\n ``\n ``\n `\n\n ### [-nativeAdDidRecordImpression:](#/c:objc(pl)GADNativeAdDelegate(im)nativeAdDidRecordImpression:)\n\n `\n ` \n Called when an impression is recorded for an ad. \n\n #### Declaration\n\n Swift \n\n optional func nativeAdDidRecordImpression(_ nativeAd: ../Classes/GADNativeAd.html)\n\n Objective-C \n\n - (void)nativeAdDidRecordImpression:(nonnull ../Classes/GADNativeAd.html *)nativeAd;\n\n- `\n ``\n ``\n `\n\n ### [-nativeAdDidRecordClick:](#/c:objc(pl)GADNativeAdDelegate(im)nativeAdDidRecordClick:)\n\n `\n ` \n Called when a click is recorded for an ad. \n\n #### Declaration\n\n Swift \n\n optional func nativeAdDidRecordClick(_ nativeAd: ../Classes/GADNativeAd.html)\n\n Objective-C \n\n - (void)nativeAdDidRecordClick:(nonnull ../Classes/GADNativeAd.html *)nativeAd;\n\n- `\n ``\n ``\n `\n\n ### [-nativeAdDidRecordSwipeGestureClick:](#/c:objc(pl)GADNativeAdDelegate(im)nativeAdDidRecordSwipeGestureClick:)\n\n `\n ` \n Called when a swipe gesture click is recorded for an ad. \n\n #### Declaration\n\n Swift \n\n optional func nativeAdDidRecordSwipeGestureClick(_ nativeAd: ../Classes/GADNativeAd.html)\n\n Objective-C \n\n - (void)nativeAdDidRecordSwipeGestureClick:(nonnull ../Classes/GADNativeAd.html *)nativeAd;\n\n[Click-Time Lifecycle Notifications\n----------------------------------](#/Click-Time-Lifecycle-Notifications)\n\n- `\n ``\n ``\n `\n\n ### [-nativeAdWillPresentScreen:](#/c:objc(pl)GADNativeAdDelegate(im)nativeAdWillPresentScreen:)\n\n `\n ` \n Called before presenting the user a full screen view in response to an ad action. Use this\n opportunity to stop animations, time sensitive interactions, etc.\n\n Normally the user looks at the ad, dismisses it, and control returns to your application with\n the nativeAdDidDismissScreen: message. However, if the user hits the Home button or clicks on an\n App Store link, your application will be backgrounded. The next method called will be the\n applicationWillResignActive: of your UIApplicationDelegate object. \n\n #### Declaration\n\n Swift \n\n @MainActor optional func nativeAdWillPresentScreen(_ nativeAd: ../Classes/GADNativeAd.html)\n\n Objective-C \n\n - (void)nativeAdWillPresentScreen:(nonnull ../Classes/GADNativeAd.html *)nativeAd;\n\n- `\n ``\n ``\n `\n\n ### [-nativeAdWillDismissScreen:](#/c:objc(pl)GADNativeAdDelegate(im)nativeAdWillDismissScreen:)\n\n `\n ` \n Called before dismissing a full screen view. \n\n #### Declaration\n\n Swift \n\n @MainActor optional func nativeAdWillDismissScreen(_ nativeAd: ../Classes/GADNativeAd.html)\n\n Objective-C \n\n - (void)nativeAdWillDismissScreen:(nonnull ../Classes/GADNativeAd.html *)nativeAd;\n\n- `\n ``\n ``\n `\n\n ### [-nativeAdDidDismissScreen:](#/c:objc(pl)GADNativeAdDelegate(im)nativeAdDidDismissScreen:)\n\n `\n ` \n Called after dismissing a full screen view. Use this opportunity to restart anything you may\n have stopped as part of nativeAdWillPresentScreen:. \n\n #### Declaration\n\n Swift \n\n @MainActor optional func nativeAdDidDismissScreen(_ nativeAd: ../Classes/GADNativeAd.html)\n\n Objective-C \n\n - (void)nativeAdDidDismissScreen:(nonnull ../Classes/GADNativeAd.html *)nativeAd;\n\n[Mute This Ad\n------------](#/Mute-This-Ad)\n\n- `\n ``\n ``\n `\n\n ### [-nativeAdIsMuted:](#/c:objc(pl)GADNativeAdDelegate(im)nativeAdIsMuted:)\n\n `\n ` \n Used for Mute This Ad feature. Called after the native ad is muted. Only called for Google ads\n and is not supported for mediated ads. \n\n #### Declaration\n\n Swift \n\n optional func nativeAdIsMuted(_ nativeAd: ../Classes/GADNativeAd.html)\n\n Objective-C \n\n - (void)nativeAdIsMuted:(nonnull ../Classes/GADNativeAd.html *)nativeAd;"]]