美文网首页
iOS cell上的分割线向左偏移15个像素,到头

iOS cell上的分割线向左偏移15个像素,到头

作者: e40c669177be | 来源:发表于2016-12-08 09:13 被阅读77次

在tableView初始化的时候写

[_tableView setSeparatorColor:[UIColor redColor]];//cell分割线的颜色
 //cell分割线的位置
    if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {
        [self.tableView setSeparatorInset:UIEdgeInsetsZero];
    }
    if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)]) {
        [self.tableView setLayoutMargins:UIEdgeInsetsZero];
    }

- (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];
}
}

相关文章

网友评论

      本文标题:iOS cell上的分割线向左偏移15个像素,到头

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