views:

13

answers:

2

hi,

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.

thanks...

A: 

Use -addObjectsFromArray: to extend a array by another.

[tmpArray1 addObjectsFromArray:tmpArray2];
KennyTM
+1  A: 

Try this:

[tmpArray1 addObjectsFromArray:tmparray2];
Toastor