YHExplorerView.m
4 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
//
// YHExplorerView.m
// YohoExplorerDemo
//
// Created by gaoqiang xu on 3/2/15.
// Copyright (c) 2015 gaoqiang xu. All rights reserved.
//
#import "YHExplorerView.h"
@interface YHExplorerView ()
@property (strong, nonatomic) YHExplorerViewController *webViewController;
@property (strong, nonatomic) NSString *url;
@property (assign, nonatomic) BOOL isLoaded;
@end
@implementation YHExplorerView
- (instancetype)initWithFrame:(CGRect)frame withNaviBar:(UINavigationBar *)naviBar
{
self = [self initWithFrame:frame];
self.currentNaviBar = naviBar;
return self;
}
- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
self.isLoaded = NO;
}
return self;
}
- (instancetype)initWithCoder:(NSCoder *)aDecoder
{
self = [super initWithCoder:aDecoder];
if (self) {
self.isLoaded = NO;
}
return self;
}
- (void)setUrl:(NSString *)url
{
// 检验url是否能正常转成NSURL,防止webview不能加载
BOOL isValidUrl = ([NSURL URLWithString:url] != nil);
if (url.length > 0
&& !isValidUrl) {
// 如果url里面含有需要转码的字符,则这里进行一次编码
_url = [url stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
} else {
_url = url;
}
}
- (void)didMoveToSuperview
{
if (!self.superview) {
return;
}
}
- (void)didMoveToWindow
{
if (!self.window) {
return;
}
if (!self.isLoaded) {
[self addSubview:self.webViewController.view];
self.isLoaded = YES;
if (self.url.length > 0) {
[self.webViewController loadWebUrl:self.url];
}
}
}
- (void)layoutSubviews
{
[super layoutSubviews];
if (self.isLoaded) {
self.webViewController.view.frame = self.bounds;
}
}
#pragma mark - Public
- (void)loadWebUrl:(NSString *)url
{
self.url = url;
if (self.isLoaded) {
[self.webViewController loadWebUrl:self.url];
}
}
- (void)loadHTMLString:(NSString *)html
{
if (self.isLoaded) {
[self.webViewController loadHTMLString:html];
}
}
- (void)setProgressBarColor:(UIColor *)color
{
[self.webViewController setProgressBarColor:color];
}
#pragma mark - Override Setter & Getter
- (YHExplorerViewController *)webViewController
{
if (!_webViewController) {
_webViewController = [[YHExplorerViewController alloc] initWithCurrentNaviBar:self.currentNaviBar];
}
return _webViewController;
}
- (UIWebView *)webView
{
return self.webViewController.webView;
}
- (void)setDelegate:(id<YHExplorerDelegate>)delegate
{
self.webViewController.delegate = delegate;
}
- (id<YHExplorerDelegate>)delegate
{
return self.webViewController.delegate;
}
- (void)setEnableProgressBar:(BOOL)enableProgressBar
{
self.webViewController.currentNaviBar = self.currentNaviBar;
self.webViewController.progressBarEnabled = enableProgressBar;
}
- (BOOL)enableProgressBar
{
return self.webViewController.progressBarEnabled;
}
#pragma mark - Method Forwarding
- (BOOL)respondsToSelector:(SEL)aSelector
{
if ([super respondsToSelector:aSelector]) {
return YES;
}
if ([self.webViewController respondsToSelector:aSelector]) {
return YES;
}
return NO;
}
- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
{
NSMethodSignature *signature = [super methodSignatureForSelector:aSelector];
if (!signature) {
if (self.webViewController && [self.webViewController respondsToSelector:aSelector]) {
return [(NSObject *)self.webViewController methodSignatureForSelector:aSelector];
}
}
return signature;
}
- (void)forwardInvocation:(NSInvocation *)anInvocation
{
if (self.webViewController && [self.webViewController respondsToSelector:[anInvocation selector]]) {
[anInvocation invokeWithTarget:self.webViewController];
}
}
//移除滚动条
- (void)removeProgress
{
[self.webViewController removeProgress];
}
@end