滚动后,UITableViewCell被删除

时间:2018-09-28 05:47:11

标签: ios swift uitableview

我正在尝试创建待办事项列表应用程序。对于此应用程序,我需要自定义UITableViewCell。我尝试使用自定义单元格,但是,当我运行该应用程序并尝试在表格视图中滚动时,所有单元格都将被删除。

这是我的代码:

class ToDoListVC: UIViewController, UITableViewDataSource, UITableViewDelegate {

    @IBOutlet weak var tableView: UITableView!

    override func viewDidLoad() {
        super.viewDidLoad()
        let nib = UINib(nibName: "TodoCell", bundle: nil)
        tableView.register(nib, forCellReuseIdentifier: "customCell")
        tableView.delegate = self
        tableView.dataSource = self
    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return HomeVC.ToDoEvents.count
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell{
        let cell = tableView.dequeueReusableCell(withIdentifier: "customCell") as! TodoCell
        let eventName = HomeVC.ToDoEvents[indexPath.row].name
        let eventTime = HomeVC.ToDoEvents[indexPath.row].time
        let completion = HomeVC.ToDoEvents[indexPath.row].isComplete

        cell.initialize(task: eventName!, length: eventTime!, completion: completion!)

        return cell

    }

    func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        return 70
    } 
}

我不确定自己在做什么错。我经历了其他一些线程,但是没有一个解决我的问题。

0 个答案:

没有答案