SWIFT单元格填充

时间:2018-06-30 10:13:11

标签: arrays swift uitableview

我想用数组 gists1

中的数据填充表格视图的单元格
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! GistCell
        cell.backgroundColor = .clear
        let gist = gists1[indexPath.row]
        cell.configure(with: gist)
        self.tableView.reloadData()
        return cell
    }

该单元格有一个自定义类

class GistCell: UITableViewCell {

    @IBOutlet weak var labelCell: UILabel!

    func configure(with gist: Gists) {
        self.labelCell.text = gist.description!
    }
}

这是数组数据的转储:

 ▿ GistShowApp.Gists
    ▿ description: Optional("helloWorldDemo")
      - some: "helloWorldDemo"
    ▿ files: 1 key/value pair
      ▿ (2 elements)
        - key: "gistfile1.txt"
        ▿ value: GistShowApp.DetailGist
          ▿ filename: Optional("gistfile1.txt")
            - some: "gistfile1.txt"
          ▿ rawUrl: Optional("https://gist.githubusercontent.com/VladimirKhuraskin/c510014b85a6bdfa302f1f3837893a7c/raw/4648e701849ee7d52fb685111a7f0e4323505a35/gistfile1.txt")
            - some: "https://gist.githubusercontent.com/VladimirKhuraskin/c510014b85a6bdfa302f1f3837893a7c/raw/4648e701849ee7d52fb685111a7f0e4323505a35/gistfile1.txt"

我不太明白为什么首先显示一个可选值,然后显示 some 值本身。 这可能是单元格未填充数据的原因吗?

1 个答案:

答案 0 :(得分:0)

我发现这条线是多余的。

self.tableView.reloadData()

没有它,一切正常。