// // ProgressBarView.h // jiaPei // // Created by apple on 2017/5/12. // Copyright © 2017年 JCZ. All rights reserved. // #import @interface ProgressBarView : UIView { UILabel *titleLabel,*progressLabel,*contentLabel,*allLabel,*nowLabel; } //titleLabel 这个为必填项 @property (nonatomic,copy) NSString *titleString; //直接赋值进度条 将隐藏 contentLabel 高度为25 @property (nonatomic,assign) NSInteger finishCount; @property (nonatomic,assign) NSInteger allCount; //赋值已有 全部 计算进度条 高度为50 //已完成学时 @property (nonatomic,assign) NSInteger finishTime; //需要的总学时 @property (nonatomic,assign) NSInteger allNeedTime; @property (nonatomic, readwrite, assign) NSInteger RATIONKS; @property (nonatomic, readwrite, copy) NSString *RATIONKSMC; @end