我正在使用此代码。当我滚动tableview时,会自动取消选择以前选择的项目
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryCheckmark;
}
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
[tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryNone;
}
答案 0 :(得分:1)
UITableViewController
重复使用行。因此,您必须自己跟踪所选行。设置/取消设置UITableViewController
的渲染方法的选择。