开发者

How to bind 2 NSMutableArray?

i have 2 NSMutableArray with same type. i want to add second nsmutablearray to first one.

NSMutableArray *tmpArray1 (10 objects in it)

NSMutableArray *tmpArray2 (10 objects in it)

if i use [tmpArray1 addobject:tmparray2]; tmpArray1's count goes to 11. but i want to append tmparray2 to firstone. count must be 20.

thank开发者_Go百科s...


Try this:

[tmpArray1 addObjectsFromArray:tmparray2];


Use -addObjectsFromArray: to extend a array by another.

[tmpArray1 addObjectsFromArray:tmpArray2];
0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜