PasengerCell.h 820 Bytes
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9
//
//  PasengerCell.h
//  XFFruit
//
//  Created by 陈俊俊 on 15/11/8.
//  Copyright © 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>
10
#import "Compass.h"
陈俊俊's avatar
陈俊俊 committed
11
@interface PasengerCell : UITableViewCell
陈俊俊's avatar
陈俊俊 committed
12
@property (nonatomic, strong) UILabel *dqLabel;
13 14
@property (nonatomic, strong) UILabel *nameLabel;

陈俊俊's avatar
陈俊俊 committed
15
@property (nonatomic, strong) UILabel *saleLabel;
16
@property (nonatomic, strong) UIButton *lastWeekLabel;
陈俊俊's avatar
陈俊俊 committed
17 18 19 20
@property (nonatomic, strong) UILabel *lineLabel;

@property (nonatomic,strong)UIButton *detailBtn;

陈俊俊's avatar
陈俊俊 committed
21 22
+ (CGFloat)cellHeight;

23 24 25 26
- (void)setColorAndFont:(NSInteger)level;
- (void)updateCellWithPrice:(Compass *)obj index:(NSIndexPath *)indexPath;
- (void)updateCellWithFlow:(Compass *)obj index:(NSIndexPath *)indexPath;
- (void)updateCellWithGross:(Compass *)obj index:(NSIndexPath *)indexPath;
陈俊俊's avatar
陈俊俊 committed
27 28 29


@end