1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//
// PassengerHeaderCell.m
// XFFruit
//
// Created by 陈俊俊 on 15/11/8.
// Copyright © 2015年 Xummer. All rights reserved.
//
#import "PassengerHeaderCell.h"
#define Sale_Header_Height 30
@interface PassengerHeaderCell ()
{
BOOL hasBuildLayout; // default, NO;
}
@property (nonatomic, strong) UILabel *label;
@property (nonatomic, strong) UIFont *textFont;
@end
@implementation PassengerHeaderCell
+ (CGFloat)viewHeight
{
return Sale_Header_Height;
}
- (void)buildLayout
{
if(hasBuildLayout) {
return;
}
if(self.textFont == nil) {
self.textFont = [UIFont systemFontOfSize:15];
}
hasBuildLayout = YES;
self.contentView.backgroundColor = [UIColor lightGrayColor];
CGRect rect = CGRectMake(0, 0, 50, Sale_Header_Height);
UILabel *searLabel = [IBTCommon labelWithTitle:@"280家" frame:rect textFont:self.textFont];
searLabel.textAlignment = NSTextAlignmentCenter;
[self.contentView addSubview:searLabel];
rect = CGRectMake(searLabel.right, 0,Sale_Header_Height - 5, Sale_Header_Height);
UIImageView *yearImage = [[UIImageView alloc]initWithFrame:rect];
yearImage.image = [UIImage imageNamed:@"search"];
[self.contentView addSubview:yearImage];
CGFloat width = (ScreenSize.width - searLabel.width - yearImage.width - 20)/2;
rect = CGRectMake(yearImage.right + 20 , 0, width, Sale_Header_Height);
UILabel * ksjLabel = [IBTCommon labelWithTitle:@"客单价" frame:rect textFont:self.textFont];
ksjLabel.textAlignment = NSTextAlignmentCenter;
[self.contentView addSubview:ksjLabel];
rect = CGRectMake(ksjLabel.right , 0, width, Sale_Header_Height);
UILabel * bszLabel = [IBTCommon labelWithTitle:@"比上周" frame:rect textFont:self.textFont];
bszLabel.textAlignment = NSTextAlignmentCenter;
[self.contentView addSubview:bszLabel];
}
@end