Массивы.
Было:
NSArray *myArray = [NSArray arrayWithObjects:@"one", @"two", @"three", nil];
Стало:
NSArray *myArray = @[@"one", @"two", @"three"]; //Без nil!
Словари.
Было:
NSDictionary *myDictionary = [NSDictionary dictionaryWithObjectsAndKeys:@"one", @"first", @"two", @"second", nil];
Стало:
NSDictionary *myDictionary = @{@"first" : @"one", @"
(
Read more... )