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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
//
// ICRPatrolAllStoreViewController.m
// XFFruit
//
// Created by Xummer on 15/6/1.
// Copyright (c) 2015年 Xummer. All rights reserved.
//
#import "ICRPatrolAllStoreViewController.h"
#import "IBTTableViewCell.h"
#import "ICRPatrolPlan.h"
static NSString *tableViewCell = @"IBTTableViewCell";
typedef NS_ENUM(NSUInteger, ICRPatrolStoreStatus) {
kICRPatrolStoreStatusFinished = 0,
kICRPatrolStoreStatusUnFinished,
kICRPatrolStoreSectionCount
};
@interface ICRPatrolAllStoreViewController ()
<
UITableViewDelegate,
UITableViewDataSource
>
@property (strong, nonatomic) ICRPatrolPlan *m_plan;
@property (strong, nonatomic) IBTTableView *m_tableView;
@property (strong, nonatomic) NSMutableArray *m_arrUnfinishedStores;
@property (strong, nonatomic) NSMutableArray *m_arrFinishedStores;
@end
@implementation ICRPatrolAllStoreViewController
#pragma mark - Life Cycle
- (instancetype)initWithPatrolPlan:(id)plan {
self = [super init];
if (!self) {
return nil;
}
if ([plan isKindOfClass:[ICRPatrolPlan class]]) {
self.m_plan = plan;
}
return self;
}
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
self.title = @"巡店详情";
[self initData];
[self setupSubviews];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
#pragma mark - Private Method
- (void)setupSubviews {
self.m_tableView = [[IBTTableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
_m_tableView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[_m_tableView registerClass:[IBTTableViewCell class] forCellReuseIdentifier:tableViewCell];
_m_tableView.dataSource = self;
_m_tableView.delegate = self;
_m_tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
[self.view addSubview:_m_tableView];
}
- (void)initData {
if (!_m_arrFinishedStores || !_m_arrUnfinishedStores) {
_m_arrFinishedStores = [NSMutableArray array];
_m_arrUnfinishedStores = [NSMutableArray array];
}
// if (_m_plan && _m_plan.stores.count > 0) {
//
// for (NSDictionary *dicStore in _m_plan.stores) {
//
// if ([dicStore[ @"status" ] integerValue] == 0) {
// [_m_arrUnfinishedStores addObject:dicStore];
// } else if ([dicStore[ @"status" ] integerValue] == 1) {
// [_m_arrFinishedStores addObject:dicStore];
// }
// }
// }
}
#pragma mark - UITableView DataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
switch (section) {
case kICRPatrolStoreStatusFinished:
{
return _m_arrFinishedStores.count;
}
break;
case kICRPatrolStoreStatusUnFinished:
{
return _m_arrUnfinishedStores.count;
}
break;
default:
return 0;
break;
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell =
[tableView dequeueReusableCellWithIdentifier:tableViewCell forIndexPath:indexPath];
[self configureCell:cell forRowAtIndexPath:indexPath];
return cell;
}
- (void)configureCell:(UITableViewCell *)cell
forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.userInteractionEnabled = NO;
cell.textLabel.textAlignment = NSTextAlignmentCenter;
switch (indexPath.section) {
case kICRPatrolStoreStatusFinished:
{
cell.textLabel.text = [_m_arrFinishedStores objectAtIndex:indexPath.row][ @"storeName" ];
}
break;
case kICRPatrolStoreStatusUnFinished:
{
cell.textLabel.text = [_m_arrUnfinishedStores objectAtIndex:indexPath.row][ @"storeName" ];
}
break;
default:
break;
}
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return kICRPatrolStoreSectionCount;
}
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
switch (section) {
case kICRPatrolStoreStatusFinished:
{
return @"已巡店";
}
break;
case kICRPatrolStoreStatusUnFinished:
{
return @"未巡店";
}
break;
default:
return nil;
break;
}
}
@end