I have an existing array to which i want to add an other array in the front of the existing array.
Add to the end is no problem with
[existingArray addObjectsFromArray:newArray];
But how to add it to the front?
|
|
|
You can do this without a temporary array, and without assuming that
|
|||
|
|
|
Same method, but invert the order and re-assign:
|
||||
|
|
Hope,this will help you..enjoy... |
|||
|
|
|
You can create a 3rd array and add the elements in the order you want, then asing it back to the first one:
|
|||
|
|
|
For completeness' sake here's a very different way:
|
|||
|
|
|
You can try add objects to index below code:
Thanks..! |
|||
|
|
|
Think the two first answers are more elegant, but here's another way: Use:
where the |
|||
|
|
|
To insert jjust before the existing array u must use index 0
|
|||
|
|