使用 NSPropertyListSerialization 持久化字典与数组

今天看YYKit的源码,无意中看到还有如此方法 特意记录学习一下

//将listObject(数组或字典)转换成 NSData

NSData *data =  [NSPropertyListSerialization dataWithPropertyList:listObject
                                                  format:NSPropertyListBinaryFormat_v1_0
                                                 options:0
                                                   error:nil];

[data writeToFile:path atomically:YES];

//将 NSData 转换出来

 [NSPropertyListSerialization propertyListWithData:data
                                                 options:0
                                                  format:NULL
                                                   error:nil];

自己可以封装一下 进行存储设置

你可能感兴趣的:(使用 NSPropertyListSerialization 持久化字典与数组)