有没有人有正式答案为什么有些tableview单元格线在滚动时会消失?这是一个小故障吗?我已经看到了一些关于如何删除它们的答案但是导致这个问题的原因是什么?
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if indexPath.section == 0 {
let cell = tableView.dequeueReusableCell(withIdentifier: "DisplayHeader") as! DisplayTVC
return cell
} else {
let cell = tableView.dequeueReusableCell(withIdentifier: "PictureDisplay") as! PictureTVC
cell.collectionView.reloadData()
return cell
}
}