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

tableView 隐藏多余分割线,tableView分割线增加15像素

时间:2014-09-18 16:09:14      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   ar   div   sp   log   on   

 1 //隐藏分割线
 2 [self setExtraCellLineHidden:_tableView];
 3 //隐藏多余分割线
 4 -(void)setExtraCellLineHidden: (UITableView *)tableView
 5 {
 6     UIView *view = [UIView new];
 7     view.backgroundColor = [UIColor clearColor];
 8     [tableView setTableFooterView:view];
 9 }
10 
11  
//增加15像素分割线
 if ([_tableView respondsToSelector:@selector(setSeparatorInset:)])
 {        
        [_tableView setSeparatorInset:UIEdgeInsetsZero]; 
 }

 

tableView 隐藏多余分割线,tableView分割线增加15像素

标签:style   blog   color   os   ar   div   sp   log   on   

原文地址:http://www.cnblogs.com/kwame/p/3979181.html

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