我是首发! 我在TableViewController中有7个单元格(7天) 如何获取所有选定单元格的indexPath并写入NSMutableArray 我的项目是闹钟
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
cell.accessoryType = UITableViewCellAccessoryCheckmark;
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
cell.accessoryType = UITableViewCellAccessoryNone;
}
请帮忙或告诉我一些事情
答案 0 :(得分:0)
您可以使用此方法获取indexpath数组。
NSArray * indexPathArray = [yourTableView indexPathsForSelectedRows];