我有一个NSDictionary,我需要保存并加载到内存中。例如,在NSUserDefaults中保存NSString很容易。请帮帮我:)。
答案 0 :(得分:4)
只要您的词典内容符合要求,您就可以使用-[NSDictionary writeToFile:atomically:]或-[NSDictionary writeToURL:atomically:]来保留字典,然后使用+[NSDictionary dictionaryWithContentsOfFile:]或+[NSDictionary dictionaryWithContentsOfURL:]来阅读该文件回到字典中。
MVCNetworking sample project包含一些执行此操作的代码。