字典:NSDictionary

首先NSDictionary和数组是差不多的 区别是数组的每一项就是每一下,但是字典的每一项是两个东西key和value 这两个是一一对应的,即key:value的形式 另外字典里面只能存储object类型的,基础类型的数据是不能存的,比如一个int型的数据 我们就可以给它做转换,转成NSString或者NSNumber才能存储

接下来我们进到这个类里面看看 也证实我刚才说的他和NSArray是相似的, 因为这个类在定义的时候就引用了NSArray和NSSet...

所以我们可以把它也看成是一个特殊的数组.当然这样说也太简单了....大家理解就行 继续向下看, 我们看看他的方法等

首先是创建

NSDictionary * dict1 = @{@ "key1" :@ "value1" }; NSLog (@ "dict1 = %@" ,dict1); NSDictionary * dict2 = [[ NSDictionary alloc] init ]; NSLog (@ "dict2 = %@" ,dict2); NSDictionary * dict3 = [[ NSDictionary alloc]initWithDictionary:dict1]; NSLog (@ "dict3 = %@" ,dict3); NSDictionary * dict4 = [[ NSDictionary alloc]initWithObjectsAndKeys:@ "value4" ,@ "key4" ,@ "value44" ,@ "key44" , nil ]; NSLog (@ "dict4 = %@" ,dict4); NSDictionary * dict5 = [[ NSDictionary alloc]initWithObjects:@[@ "value5" ,@ "value55" ] forKeys:@[@ "key5" ,@ "key55" ]]; NSLog (@ "dict5 = %@" ,dict5); NSDictionary * dict6 = [ NSDictionary dictionaryWithDictionary:dict1]; NSLog (@ "dict6 = %@" ,dict6); NSDictionary * dict7 = [ NSDictionary dictionaryWithObjectsAndKeys:@ "value7" ,@ "key7" ,@ "value77" ,@ "key77" , nil ]; NSLog (@ "dict7 = %@" ,dict7); NSDictionary * dict8 = [ NSDictionary dictionaryWithObject:@ "value8" forKey:@ "key8" ]; NSLog (@ "dict8 = %@" ,dict8); 复制代码

大家在使用中根据实际情况创建,因为是不可变数组,所以一遍都是使用第一种,直接赋值,算是偷懒吧... 至于常用方法,我还是举些例子.具体场景具体使用

//常用方法
        //count  (字典元素格式   key:value 是一一对应的,所以是算作一个的)
        NSLog(@"%ld",[dict7 count]);
        //objectForKey:  (获取一个key对用的值)
        NSLog(@"%@",[dict7 objectForKey:@"key7"]);
        //allKeys   (获取key集合)
        NSLog(@"%@",[dict7 allKeys]);
        //allKeysForObject:   (获取该value对应的所有key   key是唯一的 但是value是有可能相同的)
        NSLog(@"%@",[dict7 allKeysForObject:@"key7"]);
        //allValues   (获取所有value)
        NSLog(@"%@",[dict7 allValues]);
        //isEqualToDictionary   (是否和其他字典相同)
        NSLog(@"%d",[dict7 isEqualToDictionary:dict8]);
        //keysSortedByValueUsingSelector:   (对所有的key进行排序)
        NSLog(@"%@",[dict7 keysSortedByValueUsingSelector:@selector(compare:)]);
        //for in
        for (id key in dict7) {
            NSLog(@"key = %@  value = %@",key,[dict7 objectForKey:key]);
        //枚举遍历
        NSEnumerator *enumerator = [dict7 keyEnumerator];
        id key = [enumerator nextObject];
        while (key) {
            NSLog(@"key = %@  value = %@",key,[dict7 objectForKey:key]);
            key = [enumerator nextObject];
        //block
        [dict7 enumerateKeysAndObjectsUsingBlock:^(id  _Nonnull key, id  _Nonnull obj, BOOL * _Nonnull stop) {            NSLog(@"key = %@  value = %@",key,[dict7 objectForKey:key]);
复制代码

在接下来就是它的子类 可变字典了, 跟字符串,数组一样,可变类型和不可变的区别是不可变的类型,在创建的时候赋值了,那么他就不会变了,一直到释放都是如此, 但是可变类型,是可以改变值的.

NSMutableDictionary 首先是它的创建,因为集成NSDictionary 所以跟之前一样 继承的那么所有的方法都可以拿过来直接用包括创建.... 创建的话就简单几个例子吧

//dictionary NSMutableDictionary *dict9 = [ NSMutableDictionary dictionary]; NSLog ( @"dict9 = %@" ,dict9); //dictionaryWithCapacity: NSMutableDictionary *dict10 = [ NSMutableDictionary dictionaryWithCapacity: 0 ]; NSLog ( @"dict10 = %@" ,dict10); 复制代码

常用方法

//常用方法
        //setObject:(setValue:)forKey:   (添加某元素)
        [dict10 setObject:@"value10" forKey:@"key10"];
        [dict10 setObject:@"value11" forKey:@"key11"];
        [dict10 setObject:@"value12" forKey:@"key12"];
        [dict10 setValue:@"value13" forKey:@"key13"];
        [dict10 setValue:@"value14" forKey:@"key14"];
        [dict10 setValue:@"value15" forKey:@"key15"];
        NSLog(@"%@",dict10);
        //removeObjectForKey:   (移除某一个key对应的元素)
        [dict10 removeObjectForKey:@"key15"];
        NSLog(@"%@",dict10);
        //removeObjectsForKeys  (移除一组key对应的元素)
        [dict10 removeObjectsForKeys:@[@"key14",@"key13"]];
        NSLog(@"%@",dict10);
        //removeAllObjects  (移除所有元素)
        [dict10 removeAllObjects];
        NSLog(@"%@",dict10);
复制代码

再之后我会继续讲NSNumber 和 NSData 至于为什么, 在这里都解释一下 我们基本上在开发应用的时候都是有很多网络数据的 这些可能是JSON 可能是XML,也可能是其他的, 但是这些解析之后其实都是类似的字符串,数组,字典,基本数据类型..... 所以我觉得有必要把这些都简单的过一遍,这样在解析数据之后, 我们在应用的界面上展示,如何操作这些数据,在底层逻辑上如何处理这些数据等等,我们就会得心应手.

Demo地址: github.com/spicyShrimp…

系列:iOS开发-前言+大纲 blog.csdn.net/spicyShrimp…

分类:
iOS
  •