我的NSMutableArray中有一个ViewController,它是我的UITableView的数据源,定义如下:

NSMutableArray *messageArray;

我有一种方法可以重新加载tableView数据,在此之前,我想清除现有的表数据。

如果我使用以下代码:
  [messageArray removeAllObjects];
  [self.tableView reloadData];

我得到以下异常:

2013-02-12 14:20:30.378 appname [20998:907] *由于
未捕获的异常“NSInternalInconsistencyException”,原因:
'-[__ NSCFArray removeObjectAtIndex:]:发送给的变异方法
不变的物体”
*
第一个抛出调用堆栈:(0x3939e3e7 0x35dd6963 0x3939e307 0x393200e7 0x392eb5e5 0x7cda3 0x3a236047 0x3a2360d1 0x3a236047
0x3a235ffb 0x3a235fd5 0x3a23588b 0x3a235d79 0x3a15e5c9 0x3a14b8b1
0x3a14b1bf 0x336305f7 0x33630227 0x393733e7 0x3937338b 0x3937220f
0x392e523d 0x392e50c9 0x3362f33b 0x3a19f291 0x79c11 0x39be4b20)
libc ++ abi.dylib:终止调用引发异常

但是,如果我使用以下代码,则可以使用。
  NSMutableArray *emptyArray = [NSMutableArray new];
  messageArray = emptyArray;
  [self.tableView reloadData];

为什么我收到removeAllObjects错误?
这可能是罪魁祸首吗?
    NSMutableDictionary *responseDictionary = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:nil];
    messageArray = responseDictionary[@"data"];

最佳答案

这可能是罪魁祸首吗?

NSMutableDictionary *responseDictionary = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:nil];
messageArray = responseDictionary[@"data"];

是的,您要将选项用于可变容器:
NSMutableDictionary *responseDictionary = [NSJSONSerialization JSONObjectWithData:responseData options: NSJSONReadingMutableContainers error:NULL];

08-17 09:08