lpw
2022-06-21 4aeed2fc76be6749888e9982d8902b520c650d71
commit | author | age
ab47ec 1 //
H 2 //  WAWebProgressView.h
3 //  WAWebPayImplUI
4 //
5 //  Created by hank on 16/4/29.
6 //  Copyright © 2016年 hank. All rights reserved.
7 //
8
9 #import <UIKit/UIKit.h>
10
11 @interface WAWebProgressView : UIView
12
13 /** 进度值 */
14 @property (nonatomic, assign) CGFloat progress;
15 /** 背景颜色 */
16 @property (nonatomic, strong) UIColor *backgroundColor;
17 /** 进度颜色 */
18 @property (nonatomic, strong) UIColor *progressColor;
19
20 /** 开启网页自动进度效果 */
21 - (void)startAnimation;
22
23 /** 关闭网页自动进度效果 */
24 - (void)stopAnimation;
25
26 @end