NSMutableDictionary *dic = [NSMutableDictionary dictionary];//创建一个NSMutableDictionary类型的空字典;
NSMutableDictionary *dic1 = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"123",@"a",@"523",@"b" ,nil];//创建一个NSMutableDictionary类型的字典;
//增,在字典中增加一对键值对
[dic1 setObject:@"value1" forKey:@"key1"];
[dic setValue:@"value2" forKey:@"key2"];
//删
[dic removeAllObjects];//移除所有的键值对
[dic removeObjectForKey:@"a"];//移除某个键对应的键值对;
//嵌套
//数组——字典
//字典——数组
//数组——字典——字典
//数组——字典——数组
NSMutableDictionary *dic1 = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"123",@"a",@"523",@"b" ,nil];//创建一个NSMutableDictionary类型的字典;
//增,在字典中增加一对键值对
[dic1 setObject:@"value1" forKey:@"key1"];
[dic setValue:@"value2" forKey:@"key2"];
//删
[dic removeAllObjects];//移除所有的键值对
[dic removeObjectForKey:@"a"];//移除某个键对应的键值对;
//嵌套
//数组——字典
//字典——数组
//数组——字典——字典
//数组——字典——数组
//字典——数组——字典
(其它用法可以参考上一篇文章)