码迷,mamicode.com
首页 > 移动开发 > 详细

IOS中将对象属性列表归档成一个plist文件中

时间:2014-05-09 05:56:00      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   width   c   2014   

归档步骤:

1、将一个NSDictionary对象归档到一个plist属性列表中

   <1> 首先要将数据封装成字典:

   NSMutableDictionary * dict = [NSMutableDctionary dictionary];

   [dict setObject:@"烟灰" forKey:@"name"]; 

   [dict setObject:@"1234567" forKey:@"phoneNumber"];

   [dict setObject:@"24" forKey:@"age"];

   <2> 将字典永久的保存在文件中

    [dict writeToFile:path atomically:YES]; ( path 为数据要写入的文件中,例如:/Users/apple/Library/Application Support/iPhone Simulator/6.0/Applications/Documents/stu.plist)

2、读取属性列表

    读取属性列表的时候要恢复NSDictionary对象

    NSDictionary * dict = [NSDictionary  dictionaryWithContentsOfFile:path];

    NSLog(@"name:%@",[dict objectForKey:@"name"]);

    NSLog(@"phoneNumber:%@",[dict objectForKey:@"phoneNumber"]);

    NSLog(@"age:%@",[dict objectForKey:@"age"]);

 

流程图如下:

 

 

 

bubuko.com,布布扣 

 

 

 

 

IOS中将对象属性列表归档成一个plist文件中,布布扣,bubuko.com

IOS中将对象属性列表归档成一个plist文件中

标签:style   blog   http   width   c   2014   

原文地址:http://www.cnblogs.com/angongIT/p/3717977.html

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