在我的应用程序中,我使用了自定义单元格。在其中我有许多字段,如按钮、图像、文本字段、标签。
其中我需要显示indexpath.section
和indexpath.row
值
我试过了
cell.sectionLabel.text = [NSString stringWithFormat:@"%d", indexPath.section];
cell.rowLabel.text = [NSString stringWithFormat:@"%d", indexPath.section];
但由于重用机制,显示的值有时会出错。
如何解决这个问题?