我有 3 个NSMutableArrays
:a,b,c。
a= [b copy];
a= [c copy];
第一次复制(从 b 中)的元素会发生什么?
在我的用例中,a 是我用作 tableview 的 DataSource 的数组,而 b 和 c 是在需要时代替数据源的数组。谢谢
具体例子。最后我不得不使用 setArray。
-(IBAction)selectTab:(id)sender {
if ([(UIButton*)sender tag] == 1000) {
if (![self.butonLocuri isSelected]) {
[tableDataSourceArray setArray:locuriArray];
[self addPins:self.tableDataSourceArray];
[self.myTableView reloadData];
}
}
if ([(UIButton*)sender tag] == 2000) {
if(![self.butonEvenimente isSelected]){
[tableDataSourceArray setArray:evenimenteArray];
[self addPins:self.tableDataSourceArray];
[self.myTableView reloadData];
}
}
}