I have stored three arrays inside another array. Now I need to separate those three arrays and store in three different arrays. How to do this?
Nsmutablearray *arr=[[nsmutablearray alloc]initwithobjects:arr1,arr2,arr3];
now i need to divide it to following model
Nsmutablearray *firstarr=arr1;
Nsmutablearray *secondarr=arr2;
Nsmutablearray *thirdarr=arr3;
I need to do this in for in loop.