所以我写了这段代码来在我想要选择的行旁边打一个复选标记,因为我想要多个选择的行
UITableViewCell *cell = [tableView cellForRowAtIndexPath:path];
if (cell.accessoryType == UITableViewCellAccessoryCheckmark) {
cell.accessoryType = UITableViewCellAccessoryNone;
} else {
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}
但是当我使用该方法时:
NSArray *selectedIndexPaths = [self.LightsView indexPathsForSelectedRows];
它只获取我点击的最后一行。复选标记没有选择它吗?