BBASMAdEventDelegate.h 918 Bytes
//
//  BBASMAdEventDelegate.h
//  BaiduMobAdSDK
//
//  Created by lishan04 on 16/5/12.
//  Copyright © 2016年 Baidu Inc. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "BBASMInternalConstants.h"

@class BBASMAdH5Renderer;
@class BBASMInstance;

@protocol BBASMAdEventDelegate <NSObject>
@optional


- (void)onAdError:(BBASMAdH5Renderer *)render
   withAdInstance:(BBASMInstance *)adInstance
           reason:(BBASMAdFailReason)reason
   withDictionary:(NSDictionary *)dict;

- (void)onAdClicked:(BBASMAdH5Renderer *)render
     withAdInstance:(BBASMInstance *)adInstance
     withDictionary:(NSDictionary *)dict;

- (void)onAdFinish:(BBASMAdH5Renderer *)render
    withAdInstance:(BBASMInstance *)adInstance
    withDictionary:(NSDictionary *)dict;

/**
 *  @brief 在用户点击完广告条出现全屏广告页面以后,用户关闭全屏广告时的回调
 */
- (void)onAdDismissLp;

@end