码迷,mamicode.com
首页 > 其他好文 > 详细

UITableView设置Section间距

时间:2016-07-22 14:40:27      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:

//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.jianshu.com/p/7364a11e1fc2
著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”。

UITableView设置Section间距

标签:

原文地址:http://www.cnblogs.com/fantasy940155655/p/5694916.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!