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. Immediately after that,
nativeAdWillLeaveApplication: is called.
Called before the application will go to the background or terminate due to an ad action that
will launch another application (such as the App Store). The normal UIApplicationDelegate
methods, like applicationDidEnterBackground:, will be called immediately before this.
[[["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 2021-03-03 UTC."],[],[],null,["GADUnifiedNativeAdDelegate \n\n @protocol GADUnifiedNativeAdDelegate \u003cNSObject\u003e\n\nIdentifies native ad assets.\n[Ad Lifecycle Events](#/Ad%20Lifecycle%20Events)\n\n- `\n ``\n ``\n `\n\n [-nativeAdDidRecordImpression:](#/c:objc(pl)GADUnifiedNativeAdDelegate(im)nativeAdDidRecordImpression:)`\n ` \n Called when an impression is recorded for an ad. Only called for Google ads and is not supported\n for mediated ads. \n\n Declaration \n Objective-C \n\n - (void)nativeAdDidRecordImpression:(nonnull ../Classes/GADUnifiedNativeAd.html *)nativeAd;\n\n- `\n ``\n ``\n `\n\n [-nativeAdDidRecordClick:](#/c:objc(pl)GADUnifiedNativeAdDelegate(im)nativeAdDidRecordClick:)`\n ` \n Called when a click is recorded for an ad. Only called for Google ads and is not supported for\n mediated ads. \n\n Declaration \n Objective-C \n\n - (void)nativeAdDidRecordClick:(nonnull ../Classes/GADUnifiedNativeAd.html *)nativeAd;\n\n[Click-Time Lifecycle Notifications](#/Click-Time%20Lifecycle%20Notifications)\n\n- `\n ``\n ``\n `\n\n [-nativeAdWillPresentScreen:](#/c:objc(pl)GADUnifiedNativeAdDelegate(im)nativeAdWillPresentScreen:)`\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. Immediately after that,\n nativeAdWillLeaveApplication: is called. \n\n Declaration \n Objective-C \n\n - (void)nativeAdWillPresentScreen:(nonnull ../Classes/GADUnifiedNativeAd.html *)nativeAd;\n\n- `\n ``\n ``\n `\n\n [-nativeAdWillDismissScreen:](#/c:objc(pl)GADUnifiedNativeAdDelegate(im)nativeAdWillDismissScreen:)`\n ` \n Called before dismissing a full screen view. \n\n Declaration \n Objective-C \n\n - (void)nativeAdWillDismissScreen:(nonnull ../Classes/GADUnifiedNativeAd.html *)nativeAd;\n\n- `\n ``\n ``\n `\n\n [-nativeAdDidDismissScreen:](#/c:objc(pl)GADUnifiedNativeAdDelegate(im)nativeAdDidDismissScreen:)`\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 Objective-C \n\n - (void)nativeAdDidDismissScreen:(nonnull ../Classes/GADUnifiedNativeAd.html *)nativeAd;\n\n- `\n ``\n ``\n `\n\n [-nativeAdWillLeaveApplication:](#/c:objc(pl)GADUnifiedNativeAdDelegate(im)nativeAdWillLeaveApplication:)`\n ` \n Called before the application will go to the background or terminate due to an ad action that\n will launch another application (such as the App Store). The normal UIApplicationDelegate\n methods, like applicationDidEnterBackground:, will be called immediately before this. \n\n Declaration \n Objective-C \n\n - (void)nativeAdWillLeaveApplication:(nonnull ../Classes/GADUnifiedNativeAd.html *)nativeAd;\n\n[Mute This Ad](#/Mute%20This%20Ad)\n\n- `\n ``\n ``\n `\n\n [-nativeAdIsMuted:](#/c:objc(pl)GADUnifiedNativeAdDelegate(im)nativeAdIsMuted:)`\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 Objective-C \n\n - (void)nativeAdIsMuted:(nonnull ../Classes/GADUnifiedNativeAd.html *)nativeAd;"]]