SaleViewCell.h 716 Bytes
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9
//
//  SaleViewCell.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 12
@interface SaleViewCell : UITableViewCell

陈俊俊's avatar
陈俊俊 committed
13 14
@property (nonatomic,strong)UIButton *detailBtn;
@property (nonatomic, strong) UILabel *dqLabel;
15 16
@property (nonatomic, strong) UILabel *nameLabel;

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


陈俊俊's avatar
陈俊俊 committed
23 24
+ (CGFloat)cellHeight;

25 26
- (void)updateCellWith:(Compass *)obj index:(NSIndexPath *)indexPath;
- (void)setColorAndFont:(NSInteger)level;
陈俊俊's avatar
陈俊俊 committed
27 28

@end