版本记录
版本号 | 时间 |
---|---|
V1.0 | 2017.08.28 |
前言
NSMutableDictionary
是可变字典,相对NSDictionary
来说,它是可变的,它的可变性可以参考NSMutableArray
数组,但是它与数组还是有很大不同,尽管他们都属于集合类,下面这几篇我们继续来将一下基础类的知识。还是老规矩从整体到局部,从浅入深进行讲解,谢谢大家。感兴趣的可以参考我写的上篇几篇。
1. NSMutableDictionary简单细说(一)—— 整体了解
2. NSMutableDictionary简单细说(二)—— 创建和初始化
3. NSMutableDictionary简单细说(三)—— 新增键值对
一、- (void)removeObjectForKey:(KeyType)aKey;
该方法的作用就是:移除指定的key
和与key
相对的value
。
看一下参数:
-
aKey
:要移除的key,如果key为nil,那么会抛出异常NSInvalidArgumentException
。
还要注意:
- 如果aKey不存在,则不做任何操作。
看示例代码
- (void)demoRemoveObjectForKey
{
NSMutableDictionary *dictM = [NSMutableDictionary dictionary];
[dictM setObject:@1 forKey:@"One"];
[dictM setObject:@3 forKey:@"three"];
[dictM removeObjectForKey:@"One"];
NSLog(@"dictM = %@", dictM);
}
看输出结果
2017-08-28 23:55:15.167 JJOC[7544:193583] dictM = {
three = 3;
}
结论:移除指定的键和对应的值。
二、- (void)removeAllObjects;
该方法的作用就是:移除所有的键值对。每个键和对应的值对象都发送一个release
消息。
看示例代码
- (void)demoRemoveAllObjects
{
NSMutableDictionary *dictM = [NSMutableDictionary dictionary];
[dictM setObject:@1 forKey:@"One"];
[dictM setObject:@3 forKey:@"three"];
[dictM removeAllObjects];
NSLog(@"dictM = %@", dictM);
}
看输出结果
2017-08-28 23:57:51.495 JJOC[7693:196362] dictM = {
}
结论:清除所有的键值对。
三、- (void)removeObjectsForKeys:(NSArray<KeyType> *)keyArray;
该方法的作用是:根据给定的键的集合,去移除对应的值。
还要注意:
- 如果
keyArray
中的键不存在,则忽略该条目。
下面看示例代码
- (void)demoRemoveObjectsForKeys
{
NSMutableDictionary *dictM = [NSMutableDictionary dictionary];
[dictM setObject:@1 forKey:@"One"];
[dictM setObject:@2 forKey:@"two"];
[dictM setObject:@3 forKey:@"three"];
NSArray *arr = @[@"One", @"two", @"five"];
[dictM removeObjectsForKeys:arr];
NSLog(@"dictM = %@", dictM);
}
看输出结果
2017-08-29 00:02:15.911 JJOC[7861:199996] dictM = {
three = 3;
}
结论:移除给定键数组对应的值。
四、+ (instancetype)dictionaryWithOBEXHeadersData:(NSData *)inHeadersData;
该方法的作用是:根据二进制文件创建新的字典。
结论:我表示没有用过。
五、+ (instancetype)dictionaryWithOBEXHeadersData:(const void *)inHeadersData headersDataSize:(size_t)inDataSize;
该方法的作用:这个方法的作用其实是方法四中多加了一个参数,那就是数据的体积大小。
结论:这个也没有用过。
六、- (instancetype)initWithCoder:(NSCoder *)aDecoder;
该方法的作用是:根据NSCoder对象实例化新的字典。
结论:这个用过,但是用的也不多。
七、- (NSMutableDictionary<KeyType,ObjectType> *)initWithContentsOfFile:(NSString *)path;
该方法的作用就是:根据指定路径文件实例化字典。
看示例代码
- (void)demoInitWithContentsOfFile
{
NSMutableDictionary *dictM = [[NSMutableDictionary alloc] initWithContentsOfFile:@"/Users/lucy/Desktop/demo/JJOC/JJOC/Property List.plist"];
NSLog(@"dictM = %@", dictM);
}
看输出结果
2017-08-29 00:09:55.441 JJOC[8068:205369] dictM = {
One = 1;
Three = 3;
Two = 2;
}
结论:根据指定的路径文件生成字典。
八、- (NSMutableDictionary<KeyType,ObjectType> *)initWithContentsOfURL:(NSURL *)url;
该方法的作用:根据指定的URL实例化可变字典。
结论:根据给定的URL实例化成字典。
后记
未完,待续~~~