NSMutableDictionary
使用构造函数创建一个明显更有效吗
[NSMutableDictionary dictionaryWithObjectsAndKeys:@"object1", @"key1", @2, @"key2", nil];
而不是获取文字的可变副本
[@{@"key1":@"object1", @"key2":@2} mutableCopy];
NSMutableDictionary
使用构造函数创建一个明显更有效吗
[NSMutableDictionary dictionaryWithObjectsAndKeys:@"object1", @"key1", @2, @"key2", nil];
而不是获取文字的可变副本
[@{@"key1":@"object1", @"key2":@2} mutableCopy];