Is there a way I have 2 NSMutableArrays Let's say that the first array is Recover by using the object: Add items by using: Adds addObjectFromArray: atIndex: ?
array1 and the second is
array2 . They are filled with values and I need to add items from
array1 to index
3 to
array2 Is it possible?
[array1 objectAtIndex: 3]
[array2 addObject: theObject];
3 to
array1 to
array2 in the following words:
[array2 addObject: [array 1 object ot index: 3]];
Comments
Post a Comment