ARC下 定義數(shù)組
成都創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供薩迦網(wǎng)站建設(shè)、薩迦做網(wǎng)站、薩迦網(wǎng)站設(shè)計(jì)、薩迦網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、薩迦企業(yè)網(wǎng)站模板建站服務(wù),十多年薩迦做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
NSMutableArray *tt和NSMUtableArray *tb
當(dāng)NSMUtableArray *tb=[[NSMutableArrayalloc]init];
NSDictionary *d=[NSDictionarydictionaryWithObject:@"123"forKey:@"11"];
for (int i=0; i<10; i++) {
[tb addObject:d];
}
到這一步tb里面有十個字典數(shù)據(jù)。
然后如果
tt=tb;這一步tt里面也有10個字典數(shù)據(jù)。(注意了:這里tt其實(shí)有點(diǎn)類似于c語言里面指針指向的tb的);
當(dāng)[tb removeAllObjects];后會發(fā)現(xiàn) tt里面也空了。
所以數(shù)組賦值要tt=[tb copy];才行。