When creating a new NSDictionary object in Objective-C, you can do either:
NSMutableDictionary *dict= [NSMutableDictionary dictionary];
// or
NSMutableDictionary *dict= [NSMutableDictionary new];
I was wondering what is the difference between those two?