commit | author | age
|
96fe76
|
1 |
// |
L |
2 |
// GADNativeAdImageAdLoaderOptions.h |
|
3 |
// Google Mobile Ads SDK |
|
4 |
// |
|
5 |
// Copyright 2015 Google LLC. All rights reserved. |
|
6 |
// |
|
7 |
|
|
8 |
#import <GoogleMobileAds/GADAdLoader.h> |
|
9 |
|
|
10 |
/// Ad loader options for native ad image settings. |
|
11 |
@interface GADNativeAdImageAdLoaderOptions : GADAdLoaderOptions |
|
12 |
|
|
13 |
/// Indicates whether image asset content should be loaded by the SDK. If set to YES, the SDK will |
|
14 |
/// not load image asset content and native ad image URLs can be used to fetch content. Defaults to |
|
15 |
/// NO, image assets are loaded by the SDK. |
|
16 |
@property(nonatomic, assign) BOOL disableImageLoading; |
|
17 |
|
|
18 |
/// Indicates whether multiple images should be loaded for each asset. Defaults to NO. |
|
19 |
@property(nonatomic, assign) BOOL shouldRequestMultipleImages; |
|
20 |
|
|
21 |
@end |