// 去掉tableView中的所有的线
tableView.separatorStyle = UITableViewCell.SeparatorStyle.none
// 去掉tableView中多余的线
tableView.tableFooterView= UIView.init(frame: CGRect.zero)
// 将分隔线offset设为零,即将分割线左边边距设为0
tableView.separatorInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
// tableView 禁用某一行的点击效果
self.selectionStyle = .none
// tableView 点击某一行阴影消失
tableView.deselectRow(at: indexPath, animated:true)
网友评论