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
| //
| // WAWebProgressView.h
| // WAWebPayImplUI
| //
| // Created by hank on 16/4/29.
| // Copyright © 2016年 hank. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
|
| @interface WAWebProgressView : UIView
|
| /** 进度值 */
| @property (nonatomic, assign) CGFloat progress;
| /** 背景颜色 */
| @property (nonatomic, strong) UIColor *backgroundColor;
| /** 进度颜色 */
| @property (nonatomic, strong) UIColor *progressColor;
|
| /** 开启网页自动进度效果 */
| - (void)startAnimation;
|
| /** 关闭网页自动进度效果 */
| - (void)stopAnimation;
|
| @end
|
|