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

关于对tableView分割线的处理

时间:2016-06-12 21:52:19      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

    都知道,苹果自带tableView分割线不是整个屏幕宽度的。很多时候,需求让分割线等于屏幕宽度,就需要进行一些设置。

   一、storyboard中:

     对静态tableView的设置,选中tableView,在右侧会有下面的选项。

    技术分享

图中红色部分,就是设置分割线的左右间距。但是很遗憾,当left为0时,与屏幕宽度还是差了一点点。于是,需要进行代码设置

 

二、代码设置

在tableView中,加入以下代码,即可

-(void)viewDidLayoutSubviews
{
    if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {
        [self.tableView setSeparatorInset:UIEdgeInsetsMake(0,0,0,0)];
    }
    
    if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)]) {
        [self.tableView setLayoutMargins:UIEdgeInsetsMake(0,0,0,0)];
    }
}

-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
        [cell setSeparatorInset:UIEdgeInsetsZero];
    }
    
    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
        [cell setLayoutMargins:UIEdgeInsetsZero];
    }
}

 

关于对tableView分割线的处理

标签:

原文地址:http://www.cnblogs.com/dsp-ios/p/5578722.html

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