// // TrainInfoTableViewCell.h // jiaPei // // Created by apple on 2017/2/23. // Copyright © 2017年 JCZ. All rights reserved. // #import @interface TrainInfoTableViewCell : UITableViewCell { UILabel *titleLabel,*progressLabel,*contentLabel,*allLabel,*nowLabel; } @property (nonatomic,strong) NSMutableArray *dataArray; //需要的总学时 @property (nonatomic,assign) NSInteger allNeedTime; @property (nonatomic, readwrite, assign) NSInteger RATIONKS; @property (nonatomic, readwrite, copy) NSString *RATIONKSMC; //titleLabel 这个为必填项 @property (nonatomic,copy) NSString *titleString; + (TrainInfoTableViewCell *)cellForTabelView:(UITableView*)tableView; @end