原因在于: 一个可变的数组 引用了一个常数组, 而在这个可变的数据要改变数据时,就会崩溃出这个错误。
mutableArray = constantArray;
//then [mutableArray removeAllObjects];//error.