Reports old-style code: collection literals, collection accessor usages, and the NSNumber literals.

Example:


  NSString *myString = [myArray objectAtIndex:1];

After the quick-fix is applied:


  NSString *myString = myArray[1];