标签:
//section头部间距
- (CGFloat)tableView:(UITableView )tableView heightForHeaderInSection:(NSInteger)section
{
return 1;//section头部高度
}
//section头部视图
- (UIView )tableView:(UITableView )tableView viewForHeaderInSection:(NSInteger)section
{
UIView view=[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 1)];
view.backgroundColor = [UIColor clearColor];
return view ;
}
//section底部间距
- (CGFloat)tableView:(UITableView )tableView heightForFooterInSection:(NSInteger)section
{
return 1;
}
//section底部视图
- (UIView )tableView:(UITableView )tableView viewForFooterInSection:(NSInteger)section
{
UIView view=[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 1)];
view.backgroundColor = [UIColor clearColor];
return view;
}
标签:
原文地址:http://www.cnblogs.com/fantasy940155655/p/5694916.html