NSMutableArray
obectの配列オブジェクトを置き換えたい。私はその値を取得oldArray
し_alertsArray
て変更しているので、に置き換えたいと思いoldArray
ますnewArray
。でも効果はありません!!
NSArray *oldArray = (NSArray *)[_alertsArray objectAtIndex:[indexPath row]];
NSMutableArray *newArray = [[NSMutableArray alloc] initWithArray:oldArray copyItems:YES];
[newArray replaceObjectAtIndex:3 withObject:@"YES"];
[_alertsArray replaceObjectAtIndex:[indexPath row] withObject:newArray];