mergemilitary/Assets/Plugins/ToukaGames/ToponSDK/baidu/BaiduMobAdSDK.framework/Headers/BaiduMobAdSetting.h

64 lines
1.2 KiB
C
Raw Normal View History

//
// BaiduMobAdWebSDK
//
//
//
#import <UIKit/UIKit.h>
#import "BaiduMobAdCommonConfig.h"
@interface BaiduMobAdSetting : NSObject
@property (nonatomic, assign) BOOL supportHttps;
@property (nonatomic, assign) BOOL trackCrash;
+ (BaiduMobAdSetting *)sharedInstance;
/**
* Landpage页面导航栏颜色
*/
+ (void)setLpStyle:(BaiduMobAdLpStyle)style;
/**
* M, 15M-100M,30M
*/
+ (void)setMaxVideoCacheCapacityMb:(NSInteger)capacity;
/**
SDK
@param debugLogEnable YES开启 YES
*/
- (void)setDebugLogEnable:(BOOL)debugLogEnable;
/**
CAID的开关
@param enable YES开启 YES
*/
- (void)setBDPermissionEnable:(BOOL)enable;
/**
* CAID开关状态
*/
- (BOOL)getBDPermission;
/**
* 广
* @param limit YES限制NO
*/
- (void)setLimitBaiduPersonalAds:(BOOL)limit;
/**
* 广
*/
- (BOOL)getLimitBaiduPersonalAds;
/**
* 广APP启动时进行set
* @param closeShake YES为关闭
*/
- (void)setCloseShakeAds:(BOOL)closeShake;
@end