lpw
2024-06-24 96fe7669fe8da0110590467e2e95ad88c0149112
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
//  GADNativeAd+ConfirmationClick.h
//  Google Mobile Ads SDK
//
//  Copyright 2017 Google LLC. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import <GoogleMobileAds/GADNativeAd.h>
#import <GoogleMobileAds/GADNativeAdUnconfirmedClickDelegate.h>
#import <UIKit/UIKit.h>
 
@interface GADNativeAd (ConfirmedClick)
 
/// Unconfirmed click delegate.
@property(nonatomic, weak, nullable) id<GADNativeAdUnconfirmedClickDelegate>
    unconfirmedClickDelegate;
 
/// Registers a view that will confirm the click.
- (void)registerClickConfirmingView:(nullable UIView *)view;
 
/// Cancels the unconfirmed click. Call this method when the user fails to confirm the click.
/// Calling this method causes the SDK to stop tracking clicks on the registered click confirming
/// view and invokes the -nativeAdDidCancelUnconfirmedClick: delegate method. If no unconfirmed
/// click is in progress, this method has no effect.
- (void)cancelUnconfirmedClick;
 
@end