如何将不同的单元格添加到表视图?

时间:2019-03-28 19:02:58

标签: ios swift tableview swift4

我有一个tableview,我从firebase下载数据后重新加载tableview,但是我也想向tableview添加更多不同的单元格。例如,我的数据计数为六,我想在第二行和第五行中添加不同的单元格。最后,我想显示八个单元格。

我尝试过此代码;

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return data?.count ?? 0
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    if indexPath.row == 1 {
        let cell = myTableView.dequeueReusableCell(withIdentifier: "makeLiveWallpaper") as! LiveWallTableViewCell
        if indexPath.row == 1 {
            cell.titleLabel.text = "Let's make LiveWallpaper"
        }
        return cell
    }else{
        if let cell = myTableView.dequeueReusableCell(withIdentifier: "CategoryTableViewCell", for: indexPath) as? CategoryTableViewCell{
            cell.category = category(at: indexPath)
            cell.delegate = self
            cell.setScrollPosition(x: offsets[indexPath] ?? 0)
            return cell
        }
    }
    return UITableViewCell()
}

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
    if indexPath.row == 1 {
        return 140
    }else{
        return 255
    }
}

但是它没有添加新的单元格,而是覆盖了单元格上的内容

1 个答案:

答案 0 :(得分:1)

一旦获得数据,就更新数据源,如下所示:

data.insert("", at: 1)
data.insert("", at: 4)
self.tableView.reloadData()
  

更新您的数据源方法

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    if indexPath.row == 1 {
        // your custom Cell
        return cell
    } else if indexPath.row == 5 {
        // you custom Cell
        return cell
    } else {
        // normal cell
    }
    return UITableViewCell()
}

希望它会帮助你