CNCommonListViewController.m
2.93 KB
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
//
// CNCommonListViewController.m
// CNLiveNetAdd
//
// Created by 张旭 on 2018/1/3.
// Copyright © 2018年 cnlive. All rights reserved.
//
#import "CNCommonListViewController.h"
@interface CNCommonListViewController ()
@end
@implementation CNCommonListViewController
- (instancetype)initWithStyle:(UITableViewStyle)style {
if (self = [super initWithStyle:style]) {
[self initDataSource];
}
return self;
}
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
}
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
}
-(void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
[UIView setAnimationsEnabled:YES];
}
#pragma mark - <QMUITableViewDataSource,QMUITableViewDelegate>
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return [self.dataSource count];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [[self orderedDictionaryInSection:section] count];
}
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
return [self titleForSection:section];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *identifierNormal = @"cellNormal";
QMUITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifierNormal];
if (!cell) {
cell = [[QMUITableViewCell alloc] initForTableView:self.tableView withStyle:UITableViewCellStyleSubtitle reuseIdentifier:identifierNormal];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
NSString *keyName = [self keyNameAtIndexPath:indexPath];
cell.textLabel.text = keyName;
cell.detailTextLabel.text = (NSString *)[[self orderedDictionaryInSection:indexPath.section] objectForKey:keyName];
cell.textLabel.font = UIFontMake(15);
cell.detailTextLabel.font = UIFontMake(13);
[cell updateCellAppearanceWithIndexPath:indexPath];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[self.tableView qmui_clearsSelection];
NSString *keyName = [self keyNameAtIndexPath:indexPath];
[self didSelectCellWithTitle:keyName];
[self.tableView qmui_clearsSelection];
}
#pragma mark - DataSource
- (NSString *)titleForSection:(NSInteger)section {
return [[self.dataSource allKeys] objectAtIndex:section];
}
- (QMUIOrderedDictionary *)orderedDictionaryInSection:(NSInteger)section {
return [self.dataSource objectForKey:[self titleForSection:section]];
}
- (NSString *)keyNameAtIndexPath:(NSIndexPath *)indexPath {
return [[self orderedDictionaryInSection:indexPath.section] allKeys][indexPath.row];
}
@end
@implementation CNCommonTableViewController (UISubclassingHooks)
-(void)initDataSource
{
}
-(void)didSelectCellWithTitle:(NSString *)title
{
}
@end