gpt4 book ai didi

ios - CollectionView cellForItemAt indexPath 执行双端队列单元格,但单元格的 View 为零

转载 作者:行者123 更新时间:2023-11-28 21:13:12 25 4
gpt4 key购买 nike

guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "identifier", for: indexPath) as? MYVerticalCell else {
fatalError("Couldn't deque `Vertical Cell`")
}

cell.view.backgroundColor = .black
return cell

查看outlet与cell连接

展开可选值时意外发现 nil

最佳答案

首先创建带有标识符的自定义单元格的xib,

使用前注册单元格,使用下面的例子,

tableView.register(UINib(nibName: "custCell", bundle: nil), forCellReuseIdentifier: "custCell")

然后在下面使用“func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell”

var cell = tableView.dequeueReusableCell(withIdentifier: "custCell") as? CustCell

if (cell == nil) {
cell = CustCell(style: UITableViewCellStyle.default, reuseIdentifier: "custCell"
}

关于ios - CollectionView cellForItemAt indexPath 执行双端队列单元格,但单元格的 View 为零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42393256/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com