自定义 UITableViewCell 遇到了一个非常奇怪的问题。
我使用 Storyboard原型(prototype)单元创建了一个自定义 UITableViewCell。 自定义单元格包含用于用户输入的 TextView 。 该表有 5 行。
当我尝试运行应用程序并在 textview 中输入文本时,它可以正常工作,直到第 3 行之后,第 4 和 5 行的 textview 会自动填充第 1 和第 2 行数据。
谁能帮帮我。
我想补充一些信息。我在控制台中打印了单元格并将日志显示为:
Data for row 0, <TableSampleApp.customcell: 0x7ff3c3c33570; baseClass = UITableViewCell; frame = (0 0; 375 301); clipsToBounds = YES; autoresize = W; layer = <CALayer: 0x7ff3c3c1aac0>>
Data for row 1, <TableSampleApp.customcell: 0x7ff3c3dd8a40; baseClass = UITableViewCell; frame = (0 301; 375 301); clipsToBounds = YES; autoresize = W; layer = <CALayer: 0x7ff3c3dd85c0>>
Data for row 2, <TableSampleApp.customcell: 0x7ff3c3f12e10; baseClass = UITableViewCell; frame = (0 602; 375 301); clipsToBounds = YES; autoresize = W; layer = <CALayer: 0x7ff3c3f12300>>
Data for row 3, <TableSampleApp.customcell: 0x7ff3c3c33570; baseClass = UITableViewCell; frame = (0 903; 375 301); clipsToBounds = YES; autoresize = W; layer = <CALayer: 0x7ff3c3c1aac0>>
Data for row 4, <TableSampleApp.customcell: 0x7ff3c3dd8a40; baseClass = UITableViewCell; frame = (0 1204; 375 301); clipsToBounds = YES; autoresize = W; layer = <CALayer: 0x7ff3c3dd85c0>>
正如您在此处看到的,第 0 行和第 3 行以及第 1 行和第 4 行的 CALayer 和 TableSampleApp.customcell 具有相同的值这可能是什么原因?
这是 cellforRowAtIndexPath 的代码:
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
tableView.registerNib(UINib(nibName: "RiskAssessCell", bundle: nil), forCellReuseIdentifier: "questionCustomCell")
cell = tableView.dequeueReusableCellWithIdentifier("questionCustomCell", forIndexPath: indexPath) as! QuestionCustomCell
return cell
}
自定义单元格中有一个 TextView 。在我运行应用程序并在 textview 中输入文本后,相同的文本会在单元格 3 和 4 中复制。
使用以下代码创建单元格,
let cellIdentifier = "CustomCell"
let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier) as! yourCustomCell
关于ios - 自定义 UitableViewCell 显示某些表格行的重复数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38390623/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (https://ogeek.cn/) | Powered by Discuz! X3.4 |