18 lines
407 B
Objective-C
18 lines
407 B
Objective-C
//
|
|
// IfishDengjiProgress.h
|
|
// CollectionViewTest
|
|
//
|
|
// Created by imac on 17/2/28.
|
|
// Copyright © 2017年 xiang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface IfishDengjiProgress : UIView
|
|
@property (nonatomic) float progress;
|
|
@property (nonatomic, strong) UIColor *progressColor;
|
|
@property (nonatomic,strong) UIColor *trackColor;
|
|
@property (nonatomic,strong) UIColor *pointColor;
|
|
|
|
@end
|