大家都知道,UITableView如果要去掉多余的Cell和分割线可以使用如下代码: tableView.tableFooterView = UIView(frame: CGRect.zero) 倘若要去掉所有的分割线,那么可以使用如下代码: tableView.separatorStyle = .none 如果是想去掉某个Cell的分割线呢?我们可以使用如下方法: cell.separatorInset = UIEdgeInsetsMake(0, 0, 0, cell.bounds.width) 这样各种情况我们…