You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
575 B
21 lines
575 B
// |
|
// QueryFareTableViewCell.h |
|
// tongxin |
|
// |
|
// Created by ArJun on 2018/8/3. |
|
// Copyright © 2018年 xTT. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
#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
|
|
|