两个方法要同时调用
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 0.1;
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
UIView* sectionview=[UIView alloc]init];
return sectionview;
}
- 尾部距离也是两个方法
网友评论