AI-generated Key Takeaways
-
GADAdChoicesPosition
is an enum used to specify the position of the AdChoices icon within an ad. -
It offers four corner positions: top-right, top-left, bottom-right, and bottom-left.
-
Developers can use this enum to control where the AdChoices icon appears in their ads, using corresponding Swift or Objective-C values.
GADAdChoicesPosition
enum GADAdChoicesPosition : NSInteger {}
Position of the AdChoices icon in the containing ad.
-
< Top right corner.
Declaration
Swift
case topRightCorner = 0
Objective-C
GADAdChoicesPositionTopRightCorner
-
< Top left corner.
Declaration
Swift
case topLeftCorner = 1
Objective-C
GADAdChoicesPositionTopLeftCorner
-
< Bottom right corner.
Declaration
Swift
case bottomRightCorner = 2
Objective-C
GADAdChoicesPositionBottomRightCorner
-
< Bottom Left Corner.
Declaration
Swift
case bottomLeftCorner = 3
Objective-C
GADAdChoicesPositionBottomLeftCorner