commit | author | age
|
96fe76
|
1 |
// |
L |
2 |
// GADNativeAd+CustomClickGesture.h |
|
3 |
// Google Mobile Ads SDK |
|
4 |
// |
|
5 |
// Copyright 2018 Google LLC. All rights reserved. |
|
6 |
// |
|
7 |
|
|
8 |
#import <GoogleMobileAds/GADNativeAd.h> |
|
9 |
|
|
10 |
@interface GADNativeAd (CustomClickGesture) |
|
11 |
|
|
12 |
/// Indicates whether the custom click gestures feature can be used. |
|
13 |
@property(nonatomic, readonly, getter=isCustomClickGestureEnabled) BOOL customClickGestureEnabled; |
|
14 |
|
|
15 |
/// Enables custom click gestures. Must be called before the ad is associated with an ad view. |
|
16 |
/// Available for allowlisted accounts only. |
|
17 |
- (void)enableCustomClickGestures; |
|
18 |
|
|
19 |
/// Records a click triggered by a custom click gesture. |
|
20 |
- (void)recordCustomClickGesture; |
|
21 |
|
|
22 |
@end |