123456789101112131415161718192021222324252627282930313233 |
- //
- // TrainInfoTableViewCell.h
- // jiaPei
- //
- // Created by apple on 2017/2/23.
- // Copyright © 2017年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface TrainInfoTableViewCell : UITableViewCell
- {
- UILabel *titleLabel,*progressLabel,*contentLabel,*allLabel,*nowLabel;
- }
- @property (nonatomic,strong) UILabel *mileage_label;
- @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
|