TrainInfoTableViewCell.h 774 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // TrainInfoTableViewCell.h
  3. // jiaPei
  4. //
  5. // Created by apple on 2017/2/23.
  6. // Copyright © 2017年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TrainInfoTableViewCell : UITableViewCell
  10. {
  11. UILabel *titleLabel,*progressLabel,*contentLabel,*allLabel,*nowLabel;
  12. }
  13. @property (nonatomic,strong) UILabel *mileage_label;
  14. @property (nonatomic,strong) NSMutableArray *dataArray;
  15. //需要的总学时
  16. @property (nonatomic,assign) NSInteger allNeedTime;
  17. @property (nonatomic, readwrite, assign) NSInteger RATIONKS;
  18. @property (nonatomic, readwrite, copy) NSString *RATIONKSMC;
  19. //titleLabel 这个为必填项
  20. @property (nonatomic,copy) NSString *titleString;
  21. + (TrainInfoTableViewCell *)cellForTabelView:(UITableView*)tableView;
  22. @end