// // QueryFareTableViewCell.h // tongxin // // Created by ArJun on 2018/8/3. // Copyright © 2018年 xTT. All rights reserved. // #import #import "QueryFare.h" @interface QueryFareTableViewCell : UITableViewCell @property (strong, nonatomic) IBOutlet UILabel *cententLabel; @property (strong, nonatomic) IBOutlet UILabel *timerLabel; @property (strong, nonatomic) IBOutlet UIView *cententView; @property(nonatomic, strong) QueryFare *model; - (CGFloat)getHeight; // 根绝数据计算cell的高度 - (CGFloat)heightForModel:(QueryFare *)message; @end