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
//
//  GADNativeAd+CustomClickGesture.h
//  Google Mobile Ads SDK
//
//  Copyright 2018 Google LLC. All rights reserved.
//
 
#import <GoogleMobileAds/GADNativeAd.h>
 
@interface GADNativeAd (CustomClickGesture)
 
/// Indicates whether the custom click gestures feature can be used.
@property(nonatomic, readonly, getter=isCustomClickGestureEnabled) BOOL customClickGestureEnabled;
 
/// Enables custom click gestures. Must be called before the ad is associated with an ad view.
/// Available for allowlisted accounts only.
- (void)enableCustomClickGestures;
 
/// Records a click triggered by a custom click gesture.
- (void)recordCustomClickGesture;
 
@end