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

oc 字典

时间:2015-08-18 15:47:26      阅读:311      评论:0      收藏:0      [点我收藏+]

标签:

#import <UIKit/UIKit.h>
#import "AppDelegate.h"

int main(int argc, char * argv[]) {
    //固定的字典类型
    NSDictionary *dict=@{@"name":@"Netcorner",@"sex":@"male"};
    NSLog(@"%@",dict);
    
    //读取字典类型的文件
    NSDictionary *dict1=[NSDictionary dictionaryWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"data" ofType:@"plist"]];//NSBundle用于读取资源文件
    
    NSLog(@"%@",dict1);
    NSLog(@"%@",[dict1  objectForKey:@"name"]);

    //可变的字典类型
    NSMutableDictionary *mdict=[[NSMutableDictionary alloc]  init];
    [mdict setObject:@"stephen" forKey:@"name"];//设置字典
    NSLog(@"%@",mdict);
}

data.plist内容如下:

技术分享

注:oc中的可变字典相当于java中的map

 

oc 字典

标签:

原文地址:http://www.cnblogs.com/netcorner/p/4739263.html

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