gpt4 book ai didi

ios - UITableView 自定义单元格中单元格重用的问题

转载 作者:行者123 更新时间:2023-11-29 03:55:59 27 4
gpt4 key购买 nike

在我的应用程序中,我使用了自定义单元格。其中有许多字段,例如按钮、图像、文本字段、标签。

其中我需要显示 indexpath.sectionindexpath.row

我尝试过

cell.sectionLabel.text = [NSString stringWithFormat:@"%d", indexPath.section];    
cell.rowLabel.text = [NSString stringWithFormat:@"%d", indexPath.section];

但由于重用机制,显示的值有时会出现错误。

如何解决这个问题?

最佳答案

也许您可以分享一些其他代码。

同时(这是传统方式)

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

//dequeue the cell here...

if(!cell) {
//create the cell here...
}

cell.sectionLabel.text = [NSString stringWithFormat:@"%d", indexPath.section];
cell.rowLabel.text = [NSString stringWithFormat:@"%d", indexPath.row]; // set row here

return cell;
}

关于ios - UITableView 自定义单元格中单元格重用的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16499660/

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