ProgressBarView.h 862 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // ProgressBarView.h
  3. // jiaPei
  4. //
  5. // Created by apple on 2017/5/12.
  6. // Copyright © 2017年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ProgressBarView : UIView
  10. {
  11. UILabel *titleLabel,*progressLabel,*contentLabel,*allLabel,*nowLabel;
  12. }
  13. //titleLabel 这个为必填项
  14. @property (nonatomic,copy) NSString *titleString;
  15. //直接赋值进度条 将隐藏 contentLabel 高度为25
  16. @property (nonatomic,assign) NSInteger finishCount;
  17. @property (nonatomic,assign) NSInteger allCount;
  18. //赋值已有 全部 计算进度条 高度为50
  19. //已完成学时
  20. @property (nonatomic,assign) NSInteger finishTime;
  21. //需要的总学时
  22. @property (nonatomic,assign) NSInteger allNeedTime;
  23. @property (nonatomic, readwrite, assign) NSInteger RATIONKS;
  24. @property (nonatomic, readwrite, copy) NSString *RATIONKSMC;
  25. @end