1234567891011121314151617181920212223242526272829303132 |
- //
- // ProgressBarView.h
- // jiaPei
- //
- // Created by apple on 2017/5/12.
- // Copyright © 2017年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @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
|