如何获取indexPath并在NSMutableArray中写入

时间:2016-10-18 15:10:34

标签: ios objective-c uitableview

我是首发! 我在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;

}

请帮忙或告诉我一些事情

1 个答案:

答案 0 :(得分:0)

您可以使用此方法获取indexpath数组。

NSArray * indexPathArray = [yourTableView indexPathsForSelectedRows];