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

56 lines
1.1 KiB
C
Raw Normal View History

//
// BaiduMobAdView.h
// BaiduMobAdSdk
//
// Created by jaygao on 11-9-6.
// Copyright 2011年 Baidu. All rights reserved.
//
//
#import "BaiduMobAdDelegateProtocol.h"
#import <UIKit/UIKit.h>
/**
* 广,[](http://mssp.baidu.com)
*/
/**
* 广
* 0 banner广告
*/
typedef enum _BaiduMobAdViewType {
BaiduMobAdViewTypeBanner = 0
} BaiduMobAdViewType;
@interface BaiduMobAdView : UIView
/**
*
*/
@property(nonatomic, weak) id<BaiduMobAdViewDelegate> delegate;
/**
* 广
*/
@property(nonatomic, assign) BaiduMobAdViewType AdType;
/**
* /id
*/
@property(nonatomic, copy) NSString *AdUnitTag;
/**
* SDK版本
*/
@property(nonatomic, readonly) NSString *Version;
/**
* 使controller present
*/
@property (nonatomic, weak) UIViewController *presentAdViewController;
/**
* 广,
*/
- (void)start;
@end