Subscripts can be used to simplify retrieving and setting elements in an array. Given the following array
NSArray *fruit = @[@"Apples", @"Bananas", @"Cherries"];
This line
[fruit objectAtIndex: 1];
Can be replaced by
fruit[1];
They can also be used to set an...