开发者

addObjectsFromArray vs. mutableCopy

开发者 https://www.devze.com 2023-01-06 05:31 出处:网络
I have the followin开发者_开发技巧g code: self.itemsCopy = [self.items mutableCopy]; //[self.itemsCopy addObjectsFromArray:self.items];

I have the followin开发者_开发技巧g code:

    self.itemsCopy = [self.items mutableCopy];
    //[self.itemsCopy addObjectsFromArray:self.items];

    NSLog(@"------- BEFORE APPEND --------");
    NSLog(@"items count: %d",[items count]);
    NSLog(@"itemsCopy count: %d",[itemsCopy count]);

My results are:

 ------- BEFORE APPEND --------
 items count: 15
 itemsCopy count: 15

However if I change the first line from a mutableCopy to addObjectsFromArray:

[self.itemsCopy addObjectsFromArray:self.items];

My new results are:

 ------- BEFORE APPEND --------
 items count: 15
 itemsCopy count: 0

Why does mutableCopy populate itemsCopy, but addObjectsFromArray doesn't?


Because self.itemsCopy is nil as you missed to initialize it with a NSMutableArray.

0

精彩评论

暂无评论...
验证码 换一张
取 消