问题描述
- 急,关于tableViewCell的问题
-
我设了四个分区,在第一分区中点击cell后,可以改变其他分区中cell的数据么?怎么改变?对其他分区头也可进行改变么?
解决方案
关于TableViewCell 问题
TableViewCell重叠问题的解决办法
tableViewCell重用问题总结
解决方案二:
UITableViewCell *cell = [myTableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:rowIndex inSection:sectionIndex]];
获得cell修改其数据后再[myTableView reloadData];
解决方案三:
UITableViewCell *cell = [myTableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:rowIndex inSection:sectionIndex]];
获得cell修改其数据后再[myTableView reloadData];
时间: 2024-10-29 18:20:46