GoogleMobileAds Framework Reference

GADUnifiedNativeAdUnconfirmedClickDelegate

@protocol GADUnifiedNativeAdUnconfirmedClickDelegate <NSObject>

Delegate methods for handling unified native ad unconfirmed clicks.

  • Tells the delegate that native ad receives an unconfirmed click on view with asset ID. You should update user interface and ask user to confirm the click once this message is received. Use the -registerClickConfirmingView: method in GADUnifiedNativeAd+ConfirmedClick.h to register a view that will confirm the click. Only called for Google ads and is not supported for mediated ads.

    Declaration

    Objective-C

    - (void)nativeAd:(nonnull GADUnifiedNativeAd *)nativeAd
        didReceiveUnconfirmedClickOnAssetID:
            (nonnull GADUnifiedNativeAssetIdentifier)assetID;
  • Tells the delegate that the unconfirmed click is cancelled. You should revert the user interface change once this message is received. Only called for Google ads and is not supported for mediated ads.

    Declaration

    Objective-C

    - (void)nativeAdDidCancelUnconfirmedClick:
        (nonnull GADUnifiedNativeAd *)nativeAd;