美文网首页
UITableViewCell分割线左边部分缺少一些的解决方法

UITableViewCell分割线左边部分缺少一些的解决方法

作者: MdWhat | 来源:发表于2016-12-11 15:59 被阅读11次
//cell 底部分隔线 补全
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
        [cell setLayoutMargins:UIEdgeInsetsZero];
    }
    if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
        [cell setSeparatorInset:UIEdgeInsetsZero];
    }
}

相关文章

网友评论

      本文标题:UITableViewCell分割线左边部分缺少一些的解决方法

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