1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| //
| // CSJGDPRViewController.h
| // CSJAdSDK
| //
| // Created by cuiyanan on 2020/1/17.
| // Copyright © 2020 bytedance. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
|
| NS_ASSUME_NONNULL_BEGIN
|
| @interface CSJGDPRViewController : UIViewController
|
| @property (nonatomic, copy) dispatch_block_t confirm;
|
| @property (nonatomic, copy) dispatch_block_t cancel;
|
| - (instancetype)initViewControllerWithContentUrl:(NSString *) contentUrl;
|
| @end
|
| NS_ASSUME_NONNULL_END
|
|