如何在故事板上为tableViewCell创建一个相等宽度的分隔符而不添加另一个UIView?

时间:2016-04-07 03:00:09

标签: ios storyboard

如何在故事板上为UITableViewCell制作等宽分隔符而不添加其他UIView

1 个答案:

答案 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];
}
}

来自How to set the full width of separator in UITableView