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

PList解析

时间:2016-01-01 23:02:16      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

PList解析

PList 主要在苹果开发中常用,很多后台并不会返回 PList 的数据格式,有关 Plist 的反序列化知道即可

/**

 参数

 

 1. data:   要反序列化的二进制数据

 2. option: 选项,位移枚举类型

     NSPropertyListImmutable = 0,                   不可变

     NSPropertyListMutableContainers = 1,           容器可变

     NSPropertyListMutableContainersAndLeaves = 2   容器和叶子可变

 3. format: 如果不希望知道格式,传入 NULL 即可

 4. error:  错误

 */

id result = [NSPropertyListSerialization propertyListWithData:data options:0 format:NULL error:NULL];

选项

说明

NSPropertyListImmutable = 0

不可变

NSPropertyListMutableContainers = 1

容器可变

NSPropertyListMutableContainersAndLeaves = 2

容器和叶子可变

  • format: 如果不需要格式,传入 NULL

PList解析

标签:

原文地址:http://www.cnblogs.com/fakeCoder/p/5093799.html

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