TrainInfoTableViewCell.h 720 B

12345678910111213141516171819202122232425262728293031
  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) NSMutableArray *dataArray;
  14. //需要的总学时
  15. @property (nonatomic,assign) NSInteger allNeedTime;
  16. @property (nonatomic, readwrite, assign) NSInteger RATIONKS;
  17. @property (nonatomic, readwrite, copy) NSString *RATIONKSMC;
  18. //titleLabel 这个为必填项
  19. @property (nonatomic,copy) NSString *titleString;
  20. + (TrainInfoTableViewCell *)cellForTabelView:(UITableView*)tableView;
  21. @end