Tableview细胞系消失

时间:2017-10-16 23:16:45

标签: swift uitableview

有没有人有正式答案为什么有些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
    }

}

0 个答案:

没有答案