mergemilitary/Assets/Plugins/ToukaGames/ToponSDK/baidu/BaiduMobAdSDK.framework/Headers/BaiduMobAdInterstitialDeleg...

75 lines
1.4 KiB
C
Raw Normal View History

//
// BaiduMobAdInterstitialDelegate.h
// XAdSDKDevSample
//
// Created by LiYan on 16/4/13.
// Copyright © 2016年 Baidu. All rights reserved.
//
#import "BaiduMobAdCommonConfig.h"
#import <Foundation/Foundation.h>
@class BaiduMobAdInterstitial;
@protocol BaiduMobAdInterstitialDelegate <NSObject>
@required
/**
* appid
*/
- (NSString *)publisherId;
@optional
/**
* channel id
*/
- (NSString *)channelId;
/**
* location
*/
- (BOOL) enableLocation;
/**
* 广
*/
- (void)interstitialSuccessToLoadAd:(BaiduMobAdInterstitial *)interstitial;
/**
* 广
*/
- (void)interstitialFailToLoadAd:(BaiduMobAdInterstitial *)interstitial;
/**
* 广
*/
- (void)interstitialWillPresentScreen:(BaiduMobAdInterstitial *)interstitial;
/**
* 广
*/
- (void)interstitialSuccessPresentScreen:(BaiduMobAdInterstitial *)interstitial;
/**
* 广
*/
- (void)interstitialFailPresentScreen:(BaiduMobAdInterstitial *)interstitial withError:(BaiduMobFailReason) reason;
/**
* 广
*/
- (void)interstitialDidAdClicked:(BaiduMobAdInterstitial *)interstitial;
/**
* 广
*/
- (void)interstitialDidDismissScreen:(BaiduMobAdInterstitial *)interstitial;
/**
* 广
*/
- (void)interstitialDidDismissLandingPage:(BaiduMobAdInterstitial *)interstitial;
@end