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 but you can use insertObject: method of NSMutableArray class
[array insertObject:@"all items" atIndex:0];