美文网首页
IOS8下,令cell的分割线左右距离设置为0

IOS8下,令cell的分割线左右距离设置为0

作者: 七里小晴天 | 来源:发表于2016-04-08 03:02 被阅读139次

在tableview所在的controller里面实现这两个方法

{
    if ([_NewList respondsToSelector:@selector(setSeparatorInset:)]) {
        [_NewList setSeparatorInset:UIEdgeInsetsMake(0,0,0,0)];
    }
    if ([_NewList  respondsToSelector:@selector(setLayoutMargins:)]) {
        [_NewList 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];
    }
} ```

相关文章

网友评论

      本文标题:IOS8下,令cell的分割线左右距离设置为0

      本文链接:https://www.haomeiwen.com/subject/zylvlttx.html