我尝试了这个,但我没有得到它。这是我的代码:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath: (NSIndexPath *)indexPath
{
NSArray *selectedRows=[tableView indexPathsForSelectedRows];
NSMutableArray *rownumberArray=[[NSMutableArray alloc]init];
NSMutableArray *dateArray=[[NSMutableArray alloc]init];
for (int i=0; i<selectedRows.count; i++)
{
NSIndexPath *indexPath = [selectedRows objectAtIndex:i];
NSInteger row = indexPath.row;
NSNumber *number = [NSNumber numberWithInteger:row];
[rownumberArray addObject:[HardDependency_IDArray objectAtIndex:indexPath.row]];
[dateArray addObject:[endDateArray objectAtIndex:indexPath.row]];
selectedRowArray=[[NSMutableArray alloc]init];
dateArray2=[[NSMutableArray alloc]init];
selectedRowArray=rownumberArray;
dateArray2=dateArray;
}
在更新UITableView
单元格时,我无法看到以前选定的行..