• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 自定义 UitableViewCell 显示某些表格行的重复数据

[复制链接]
菜鸟教程小白 发表于 2022-12-11 16:59:53 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

自定义 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 中复制。



Best Answer-推荐答案


使用以下代码创建单元格,

let cellIdentifier = "CustomCell"
let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier) as! yourCustomCell

关于ios - 自定义 UitableViewCell 显示某些表格行的重复数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38390623/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap