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
33
34
35
36
37
38
39
40
41
//
//  CSJWebViewControllerViewModel+Private.h
//  CSJAdSDK
//
//  Created by wangyanlin on 2020/8/26.
//  Copyright © 2020 bytedance. All rights reserved.
//
 
//#import "CSJWebViewControllerViewModel.h"
//
//NS_ASSUME_NONNULL_BEGIN
//
//@interface CSJWebViewControllerViewModel (Private)
//
//@end
//
//NS_ASSUME_NONNULL_END
 
 
 
 
 
#import "CSJCustomNavigationBarView.h"
NS_ASSUME_NONNULL_BEGIN
@class CSJCustomNavigationBarView, CSJWebViewBottomBar;
@interface CSJWebViewControllerViewModel () <WKScriptMessageHandler, UIViewControllerTransitioningDelegate, WKUIDelegate, CSJCustomNavigationBarDelegate>
@property (nonatomic, assign) CGSize size;
@property (nonatomic, strong) CSJCustomNavigationBarView *customNavigationView;
@property (nonatomic, strong) CSJWebViewBottomBar *bottomBar;
@property (nonatomic, assign, readwrite) BOOL isNavBarHidden;
@property (nonatomic, strong) BUWebViewProgressView *progressView;
@property (nonatomic, assign) BOOL hasEnterBackground;
 
/// 4300链路优选分屏,第一次点击落地页是否需要上报click
@property (nonatomic, assign) BOOL needReportClick;
 
- (void)hiddenCloseButton;
- (void)showCloseButton;
@end
 
NS_ASSUME_NONNULL_END