您的位置:首页 > 产品设计 > UI/UE

设置UITableView单元格分割线长度

2016-01-27 10:51 309 查看
       大家知道,目前UITableView中单元格的分割线是距屏幕左边框有一定距离的,而有些需求要求我们UITableView的分割线距左右边距都为零,其实很简单,具体做法如下:

      找到需要改分割线样式的类.m文件,在文件里添加方法:

    - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath
*)indexPath{

    if ([tableView
respondsToSelector:@selector(setSeparatorInset:)]) {

        [tableView setSeparatorInset:UIEdgeInsetsZero];

    }

    

    if ([tableView
respondsToSelector:@selector(setLayoutMargins:)]) {

        [tableView setLayoutMargins:UIEdgeInsetsZero];

    }

    

    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {

        [cell setLayoutMargins:UIEdgeInsetsZero];

    }

}

  运行程序,你会发现分割线样式已经改变。

如果这样不能实现,那就来一个一句话解决此问题的:

在viewDidLoad函数中加上此句代码:

self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

即可去除UITableView底部多余行及分割线
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  uitableview ios 分割线