我有一个带有许多物体的NSMUTABLEARRAY。我想改变那个mutable的indexkey里面的对象的值。
以下是我如何记录我想要更改的值
NSLog(@"%@", [[_arrayProdsCarrito objectAtIndex:_intIndexProductoEnArray] objectForKey:@"price"]);
答案 0 :(得分:1)
它是可变的所以只需改变它:
_arrayProdsCarrito[_intIndexProductoEnArray][@"price"] = 99.99;