因此,我编写了这段代码,以在要选择的行旁边放置一个选中标记,因为我要选择多个行
UITableViewCell *cell = [tableView cellForRowAtIndexPath:path];
if (cell.accessoryType == UITableViewCellAccessoryCheckmark) {
cell.accessoryType = UITableViewCellAccessoryNone;
} else {
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}
但是当我使用该方法时:
NSArray *selectedIndexPaths = [self.LightsView indexPathsForSelectedRows];
它只会得到我单击的最后一行。复选标记是否未选中?
最佳答案
为了使indexPathsForSelectedRows:
方法正常工作,您必须配置表 View 以允许多个单元格选择:
tableView.allowsMultipleSelection = YES;
关于ios - 如何从UITableView获取选定的行?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15886493/