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...