今天遇到這個問題贞言,即重寫的方法
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
可能的原因:
沒有設置 delegate
沒有重寫方法
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
另外在第一個方法中要保證只創(chuàng)建一次view鉴象,否則可能會出現(xiàn)一些問題境输。
- (nullable UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
if (nowType!=3){
return nil;
}
if (!self.sectionHeaderView) {
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, Screen_Width, 40)];
view.backgroundColor = RGB_Color(242, 242, 242);
UISegmentedControl *sg = [[UISegmentedControl alloc]initWithItems:@[@"item1",@"item2"]];
sg.selectedSegmentIndex = 0;
[sg addTarget:self action:@selector(sg3Click:) forControlEvents:UIControlEventValueChanged];
sg.frame = CGRectMake(5, 5, Screen_Width-10, 30);
sg.tintColor = myblue;
[view addSubview:sg];
self.sectionHeaderView = view;
}
return self.sectionHeaderView;
}