码迷,mamicode.com
首页 > 其他好文 > 详细

oc字典

时间:2016-01-11 18:14:01      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

#import <Foundation/Foundation.h>

 

int main(int argc, const char * argv[]) {

    @autoreleasepool {

 

    NSNumber *num=[NSNumber numberWithInt:100];

        

    NSDictionary *dic=[NSDictionary dictionaryWithObject:num  forKey:@"money"];

    

    NSDictionary *dics=[NSDictionary dictionaryWithObjectsAndKeys:@"Jay",@"name",@"22",@"age",@"F",@"gender",nil];

    NSDictionary *dic1=@{@"name":@"White",

                         @"age":@"23",

                         @"gender":@"M"};

    NSDictionary *dic2=[NSDictionary dictionaryWithDictionary:dic1];

        NSLog(@"%@",dic);

    //key-value共有多少对

        NSInteger count=[dic2 count];

        NSLog(@"count=%ld",count);

    //获取字典内value值

        NSString *name=[dic2 objectForKey:@"name"];

        NSLog(@"根据key找value--姓名:%@",name);

    //获取字典内所有的value

        NSArray *values=[dic2 allValues];

        for (id str in values) {

            NSLog(@"%@",str);

        }

    //获取字典内所有的key

        NSArray *keys=[dic2 allKeys];

        for (id str in keys) {

            NSLog(@"%@",str);

        }

    }

    return 0;

}

 

oc字典

标签:

原文地址:http://www.cnblogs.com/shaowenlong/p/5121808.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!