UITableViewCell分割线从最左边开始和分割线颜色设置

self.tableView.separatorColor = [UIColorcolorWithHexString:@"#1c232c"withAlpha:1];

self.tableView.separatorInset =UIEdgeInsetsZero;


//设置cell分割线顶格

- (void)resetSeparatorInsetForCell:(UITableViewCell *)cell {

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

        [cell setSeparatorInset:UIEdgeInsetsZero];

    }

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

        [cell setLayoutMargins:UIEdgeInsetsZero];

    }

}


你可能感兴趣的:(UITableViewCell分割线从最左边开始和分割线颜色设置)