App Crashing: Mutating method sent to immutable object
问题 I am trying to add an object to an NSMutableArray . Initially I assign some response data to the array, and can display it in a table view. After loading more data, it seems to be crashing when trying to add the new information to my original array. I am using AFNetworking for this: [operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) { if(!_myArray){ _myArray = [responseObject objectForKey:@"data"]; } else{ [_myArray addObject:[responseObject