I have this line in Objective-C.
NSMutableArray *mutableArray;
[mutableArray addObject:@{ @"Something" : aObject, @"Otherthing" : anotherObject }];
What does the @{ ... }
part do exactly? It is an object, but it seems to create some kind of key, value pair on the fly.