spm仓库支持,通用仓库
lpw
2 days ago 3f21f1e4d3d5e22d57ec392c41098841e8b0784d
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