GoogleMobileAds Framework Reference
bookmark_borderbookmark
Stay organized with collections
Save and categorize content based on your preferences.
GADNativeAdCustomClickGestureOptions
Ad loader options for custom click gestures. Available for allowlisted publishers only. These
options will be ignored for publishers not allowlisted.
-
The direction in which swipe gestures should be detected and counted as clicks.
Declaration
Swift
var swipeGestureDirection: UISwipeGestureRecognizer.Direction { get set }
Objective-C
@property (nonatomic) UISwipeGestureRecognizerDirection swipeGestureDirection;
-
Whether tap gestures should continue to be detected and counted as clicks.
Declaration
Swift
var areTapsAllowed: Bool { get set }
Objective-C
@property (nonatomic, assign, unsafe_unretained, readwrite,
getter=areTapsAllowed) BOOL tapsAllowed;
-
Initialize with the direction for detecting swipe gestures and counting them as clicks, and
whether tap gestures are allowed on the ad.
Declaration
Objective-C
- (nonnull instancetype)initWithSwipeGestureDirection:
(UISwipeGestureRecognizerDirection)direction
tapsAllowed:(BOOL)tapsAllowed;
-
Declaration
Objective-C
- (nonnull instancetype)init;
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-02-04 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-04 UTC."],[[["`GADNativeAdCustomClickGestureOptions` allows publishers to customize click gestures for native ads, such as swipe and tap."],["These options are available only for allowlisted publishers."],["Publishers can specify the swipe gesture direction and whether taps should also be counted as clicks."],["These options enhance user interaction with native ads by enabling custom click behaviors."]]],["`GADNativeAdCustomClickGestureOptions` manages custom click behaviors for ads, available to allowlisted publishers. It configures swipe gesture detection direction (`swipeGestureDirection`) and whether tap gestures are recognized as clicks (`tapsAllowed`). The class is initialized using `initWithSwipeGestureDirection:tapsAllowed:` to set these options. `init` method is unavailable. These options are ignored for non-allowlisted publishers.\n"]]