Rewarded interstitial adsStay organized with collectionsSave and categorize content based on your preferences.
Page Summary
Rewarded interstitial ads offer rewards for automatic ad views during app transitions without requiring user opt-in.
Integrating rewarded interstitial ads involves loading an ad, optionally validating SSV callbacks, registering for callbacks, displaying the ad, and handling the reward event.
You must present users with an intro screen explaining the reward and providing an opt-out option before displaying a rewarded interstitial ad.
The GADUserDidEarnRewardHandler object is used to handle the reward given to the user after the ad is displayed.
Rewarded interstitialis a type
of incentivized ad format that allows you offer rewards for ads that appear
automatically during natural app transitions. Unlike rewarded ads, users aren't
required to opt-in to view a rewarded interstitial.
Apps that require extra data inserver-side
verificationcallbacks should use the
custom data feature of rewarded ads. Any string value set on a rewarded ad
object is passed to thecustom_dataquery parameter of the SSV callback. If no
custom data value is set, thecustom_dataquery parameter value won't be
present in the SSV callback.
The following code sample demonstrates how to set custom data on a rewarded
interstitial ad object before requesting an ad.
ReplaceSAMPLE_CUSTOM_DATA_STRINGwith your custom data.
Register for callbacks
To receive notifications for presentation events, you must assign theGADFullScreenContentDelegateto thefullScreenContentDelegateproperty of
the returned ad:
TheGADFullScreenContentDelegateprotocol handles callbacks for when the ad
presents successfully or unsuccessfully, and when it is dismissed. The following
code shows how to implement the protocol and assign it to the ad:
[[["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 2026-06-12 UTC."],[],["Rewarded interstitial ads are loaded using the `load(adUnitID:request)` method. Optionally, server-side verification (SSV) callbacks can be validated by setting custom data. To receive notifications, register for callbacks by implementing the `GADFullScreenContentDelegate` protocol. Ads are displayed using `present(fromRootViewController:)`, and rewards are handled via `GADUserDidEarnRewardHandler`. Ensure a pre-ad intro screen with reward details and a skip option is presented. Preload ads to reduce latency, refreshing the cache hourly.\n"]]