全去掉
tableView.separatorStyle = UITableViewCellSeparatorStyle.none
其实就是设置分割线的位置
//要去掉的分割线
if indexPath.row == 9 {
cell?.separatorInset = UIEdgeInsetsMake(0, 0, 0,CGFloat(MAXFLOAT));
}else{
//分割线左边不空
cell?.separatorInset.left = 0;
}