lpw
2 days ago 7c666378d77fc1746cb089c273a4bacfad995356
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  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 NS_SWIFT_NAME(isCustomClickGestureEnabled);
 
/// 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