17 lines
441 B
C
17 lines
441 B
C
|
|
//
|
||
|
|
// GADAdChoicesView.h
|
||
|
|
// Google Mobile Ads SDK
|
||
|
|
//
|
||
|
|
// Copyright 2016 Google LLC. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
/// Displays AdChoices content.
|
||
|
|
///
|
||
|
|
/// If a GADAdChoicesView is set on GADNativeAdView prior to calling -setNativeAd:, AdChoices
|
||
|
|
/// content will render inside the GADAdChoicesView. By default, AdChoices is placed in the top
|
||
|
|
/// right corner of GADNativeAdView.
|
||
|
|
@interface GADAdChoicesView : UIView
|
||
|
|
@end
|