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

80 lines
1.8 KiB
C
Raw Normal View History

//
// BaiduMobAdInterstitial.h
// BaiduMobAdSDK
//
// Created by LiYan on 16/4/13.
// Copyright © 2016年 Baidu Inc. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "BaiduMobAdInterstitialDelegate.h"
/*
* 5 广使 BaiduMobAdViewTypeInterstitialOther
* 7 广 BaiduMobAdViewTypeInterstitialBeforeVideo 5s
* 8 广 BaiduMobAdViewTypeInterstitialPauseVideo
*/
typedef enum _BaiduMobAdInterstitialType {
BaiduMobAdViewTypeInterstitialOther = 5,
BaiduMobAdViewTypeInterstitialBeforeVideo = 7,
BaiduMobAdViewTypeInterstitialPauseVideo = 8
} BaiduMobAdInterstitialType;
@interface BaiduMobAdInterstitial : NSObject
/**
*
*/
@property (nonatomic ,weak) id<BaiduMobAdInterstitialDelegate> delegate;
/**
* 广
*/
@property (nonatomic) BaiduMobAdInterstitialType interstitialType;
/**
* 广
*/
@property (nonatomic) BOOL isReady;
/**
* /id
*/
@property (nonatomic,copy) NSString* AdUnitTag;
/**
* SDK版本
*/
@property (nonatomic, readonly) NSString* Version;
/**
* 使controller present
*/
@property (nonatomic, weak) UIViewController *presentAdViewController;
/**
* 广.,,使.
*/
- (void)loadAndDisplayUsingKeyWindow:(UIWindow *)keyWindow;
/**
* 广
*/
- (void)load;
/**
* 广
*/
- (void)presentFromRootViewController:(UIViewController *)rootViewController;
/**
* ,100*150
*/
- (void)loadUsingSize:(CGRect)rect;
/**
*
*/
- (void)presentFromView:(UIView *)view;
@end