Is it appreciably more efficient to create an NSMutableDictionary
using a constructor
[NSMutableDictionary dictionaryWithObjectsAndKeys:@"object1", @"key1", @2, @"key2", nil];
than taking the mutable copy of a literal
[@{@"key1":@"object1", @"key2":@2} mutableCopy];