TrainInfoTableViewCell.h 671 B

12345678910111213141516171819202122232425262728
  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. //titleLabel 这个为必填项
  17. @property (nonatomic,copy) NSString *titleString;
  18. //审核图片
  19. @property (strong, readwrite, nonatomic) UIButton *checkImg;
  20. + (TrainInfoTableViewCell *)cellForTabelView:(UITableView*)tableView;
  21. @end