Is there any way to do addObjectFromArray:atIndex:?
I have 2 NSMutableArrays. Lets say 1st array is array1 and the 2nd is array2. They ar filled with values. And I need to add item from array1 at index 3 to array2. Is it possible?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Retrieve the object using:
Add the object using:
In other words, the following adds object
3fromarray1toarray2: