hide static tableview section

主要是实现以下几个方法

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
-(UIView*)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
if(section == 1 && hideTableSection)
return [[UIView alloc] initWithFrame:CGRectZero];
return nil;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
if(section == 1 && hideTableSection)
return 1;
return 32;
}
-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
if(section == 1 && hideTableSection)
return 1;
return 16;
}
-(UIView*)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
if(section == 1 && hideTableSection)
return [[UIView alloc] initWithFrame:CGRectZero];
return nil;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if(section == 1)
{
if(hideTableSection)
return 0;
else
return 1;
}
else
{
return 2;
}
}