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
| //
| // BUWebViewProgressView.h
| // BURexxar
| //
| // Created by muhuai on 2017/6/13.
| // Copyright © 2017年 muhuai. All rights reserved.
| //
|
| #import "BUWebViewDefine.h"
|
| #import <UIKit/UIKit.h>
| #import <WebKit/WebKit.h>
|
|
| /**
| 假进度条
| 使用方法:
| 1.addSubView到 WebView中
| 2.通过多路代理将此控件设为其中一个子代理
| */
| @interface BUWebViewProgressView : UIView<BUWebViewDelegate>
|
| @property (nonatomic, strong) UIColor *lineFillColor;
|
| @end
|
|