- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
// [cell setSeparatorInset:UIEdgeInsetsZero];
[cell setSeparatorInset:UIEdgeInsetsMake(0, 5, 0, 5)];
}
UIEdgeInsetsMake(上,左,下,右)自己可以调节,
UIEdgeInsetsZero是左右两边都距离边缘零;
现在不考虑iOS7了,直接用 setSeparatorInset 方法就可以了。