lpw
2021-10-20 3826f07d64cfb12ba7f6306f5c1b9cfaa4e70f64
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