- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
//获取indexPath
NSIndexPath *indexPath = [[NSIndexPath alloc]initWithIndex:section];
if (0 == indexPath.section) {//第一组
return 20;
}else
return 15;
}
- (CGFloat)tableView:(UITableView*)tableView heightForFooterInSection:(NSInteger)section{
return 10;//设置尾视图高度
}