hank
2018-08-30 80f3190df5afd04cab14413abaaaa4ad93b70c6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
//  WAIAd.h
//  WASdkIntfUI
//
//  Created by hank on 2017/8/15.
//  Copyright © 2017年 GHW-T-01. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import "WAAdProxy.h"
 
@interface WAIAd : NSObject
 
/** 加载广告 */
- (void)loadAd;
 
/** 设置视频广告缓存完回调 */
- (void)setWAAdRewardedVideoCachedDelegate:(id<WAAdRewardedVideoCachedDelegate>)delegate;
 
/** 检测可播放广告数量 */
- (NSInteger) checkRewardedVideo;
 
/** 显示广告 */
- (void) displayRewardedVideoWithExtInfo:(NSString *)extInfo delegate:(id<WAAdRewardedVideoDelegate>)delegate;
 
- (void)applicationDidBecomeActive:(UIApplication *)application;
 
- (void)applicationDidEnterBackground:(UIApplication *)application;
 
@end