所以我写了这个代码,在我想要选择的行旁边添加一个复选标记,因为我想要多个选定的行
UITableViewCell *cell = [tableView cellForRowAtIndexPath:path]; if (cell.accessoryType == UITableViewCellAccessoryCheckmark) { cell.accessoryType = UITableViewCellAccessoryNone; } else { cell.accessoryType = UITableViewCellAccessoryCheckmark; }
但是当我使用方法:
NSArray *selectedIndexPaths = [self.LightsView indexPathsForSelectedRows];
它只会得到我点击的最后一行.勾选标记没有选择吗?
解决方法
要使indexPathsForSelectedRows:方法正常工作,必须配置表视图以允许多个单元格选择:
tableView.allowsMultipleSelection = YES;