admin
2022-09-04 fa05f89529e05078b29606e4beda3de5cfdce485
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
31
32
//
//  CSJRewardedVideoAdViewController.h
//  CSJAdSDK
//
//  Created by gdp on 2018/1/11.
//  Copyright © 2018年 bytedance. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@class CSJMaterialMeta;
@class CSJAdSlot;
@protocol CSJVideoAdDelegate;
 
 
@interface CSJRewardedVideoAdViewController : UIViewController
 
@property (nonatomic, strong) id<CSJVideoAdDelegate> rewardedVideoAd;
 
- (instancetype)initViewControllerWithAd:(CSJMaterialMeta *)materialMeta slot:(CSJAdSlot *)slot;
 
// 调起应用内 App Store,子 VC 调用
- (void)openAppStore;
 
// 切换到 WebView,当视频播放完成子 VC 调用
- (void)switchToWebViewMute:(BOOL)mute;
 
@end
 
NS_ASSUME_NONNULL_END