I want to add @\"ALL ITEMS\" object at the first index of NSARRAY.
Initially the Array has 10 objects. After adding, the array should contains 11 objects.
NSArray is immutable array you can't modify it in run time. Use NSMutableArray
[array insertObject:@"YourObject" atIndex:0];