I have a simple UITableView (with 1 section), my dataSource is a NSMutableArray of NSMutableDictionaries. I'm trying to change the value of one of the keys inside a dictionnary, but I'm getting the "mutable method sent to immutable object".
[[mutableArray objectAtIndex:0] setValue:@"hello" forKey:@"test"];
Like I said, both the array and dictionary are mutable and allocated. Any idea why I'm getting the error?