gpt4 book ai didi

ios - 带有两个自定义单元格的 UITableView 未正确显示

转载 作者:行者123 更新时间:2023-11-30 13:20:24 25 4
gpt4 key购买 nike

我有一个分组的表格 View ,由两行组成,每行都有一个自定义表格 View 单元格。我已经建立了自定义表格 View 类和单元格标识符,并与界面生成器中的表格 View 行相关联。我的第一个表格 View 单元格看起来不错,但第二个单元格似乎与第一个单元格具有相同的属性。但是,一旦我点击第二个单元格,然后点击第一个单元格,第二个单元格就会切换到正确的单元格设计。

override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 2
}

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("EditCellID", forIndexPath: indexPath) as! EditCell
if indexPath.row == 0
{
//Do some stuff
return cell
}
if indexPath.row == 1
{
let cell = tableView.dequeueReusableCellWithIdentifier("DeleteCellID", forIndexPath: indexPath) as! DeleteCell
//Do some stuff
return cell
}

return cell
}

最佳答案

试试这个:

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell: UITableViewCell!

if indexPath.row == 0 {
cell = tableView.dequeueReusableCellWithIdentifier("EditCellID", forIndexPath: indexPath) as! EditCell
// Now you can access the subclass attributes by doing : (cell as! EditCell).theAttribute
} else {
cell = tableView.dequeueReusableCellWithIdentifier("DeleteCellID", forIndexPath: indexPath) as! DeleteCell
}

return cell
}

在范围内仅创建一个单元格对象,并根据行将该对象初始化为特定 UITableViewCell 子类之一的实例。

更新:添加了有关如何访问 UITableViewCell 子类属性的注释。

关于ios - 带有两个自定义单元格的 UITableView 未正确显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37824772/

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