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