如何在iOS上轻松存储NSDictionary?

时间:2013-01-26 22:46:22

标签: objective-c nsdictionary

我有一个NSDictionary,我需要保存并加载到内存中。例如,在NSUserDefaults中保存NSString很容易。请帮帮我:)。

1 个答案:

答案 0 :(得分:4)

只要您的词典内容符合要求,您就可以使用-[NSDictionary writeToFile:atomically:]-[NSDictionary writeToURL:atomically:]来保留字典,然后使用+[NSDictionary dictionaryWithContentsOfFile:]+[NSDictionary dictionaryWithContentsOfURL:]来阅读该文件回到字典中。

MVCNetworking sample project包含一些执行此操作的代码。