NSDictionary *item = [array objectAtIndex:row];
NSMutableDictionary *mutableItem = [NSMutableDictionary dictionaryWithDictionary:item];
[mutableItem setObject:@"Ida" forKey:@"name"];
[array setObject mutableItem atIndexSubscript:row];
NSDictionary *item = [array objectAtIndex:row];
NSMutableDictionary *mutableItem = [NSMutableDictionary dictionaryWithDictionary:item];
[mutableItem setObject:@"Ida" forKey:@"name"];
[array setObject mutableItem atIndexSubscript:row];