I have been doing objective c for a couple years, my co-developer however has only just begun, but his virgin eyes found something that I hadnt even dreamed of.
He used an NSArray like a C++ pointer array
self.myArray = [NSArray arrayWithObjects:@"object1",@"object2",@"object3",nil];
NSString *object1 = self.myArray[0];
NSString *object2 = self.myArray[1];
Now while this does actually work, I cant find reference to it.
I also have not found any examples of it in use.
Does anyone have any insight into why this works. Or can lead me to some documentation to the usage.
I had no idea that you could use the NSArray like an old c++ array ??
