Initial commit

This commit is contained in:
ifish
2017-08-15 16:59:01 +08:00
commit bdc83e07ef
5766 changed files with 423223 additions and 0 deletions
@@ -0,0 +1,42 @@
//
// LXWaveProgressView.h
// LXWaveProgressDemo
//
// Created by liuxin on 16/8/1.
// Copyright © 2016年 liuxin. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface LXWaveProgressView : UIView
/**
* 进度 0-1
*/
@property (nonatomic,assign)CGFloat progress;
/**
* 波动速度,默认 1
*/
@property (nonatomic,assign)CGFloat speed;
/**
* 波纹填充颜色
*/
@property (nonatomic,strong)UIColor * firstWaveColor;
@property (nonatomic,strong)UIColor * secondWaveColor;
/**
* 波动幅度,默认 5
*/
@property (nonatomic,assign)CGFloat waveHeight;
/**
* 进度文字
*/
@property (nonatomic,strong)UILabel * progressLabel;
/**
* 是否显示单层波浪,默认NO
*/
@property (nonatomic,assign)BOOL isShowSingleWave;
@end