IOS tableVIewcell横线左端对其

需要咋tableview初始化及绘制单元格代理中添加如下代码:

//初始化添加

self.tableView_chose =[ [UITableView alloc] init];

 if ([self.tableView_chose respondsToSelector:@selector(setSeparatorInset:)]) {
        [self.tableView_chose setSeparatorInset:UIEdgeInsetsZero];
    }
    if ([self.tableView_chose respondsToSelector:@selector(setLayoutMargins:)]) {
        [self.tableView_chose 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];
    }
    
}

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。