As far as my study is concern for Objective C, I found this code for displaying the array elements:
NSMutableArray *myArray = [NSMutableArray arrayWithObjects:@"a", @"b", @"c"];
int x = 0;
for(; x<[myArray count]; x++)
NSLog(@"value at index %i is %@", x, [myArray objectAtIndex:x]);
I am just curious if this is possible below: using [myArray[x]] instead of [myArray objectAtIndex:x] instead
for(; x < [myArray count]; x++)
NSLog(@"value at index %i is %@", x, [myArray[x]]);