本文介绍了如何在NSUserdefaults中存储NSDictionary以及如何从中检索它的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我从这样的网络服务器获取一些信息。
I am getting some info from web server like this.
970,
Aditya2,
B,
JNTU1,
"[email protected]"
我需要存储这些值,我需要从我想要的地方检索它。
I need to store these values and I need to retrieve it from there where I want.
我发现NSDictionary对此是正确的。
I found NSDictionary is correct for this.
我需要在NSDictionary中保存这些值。
I need to save these values in NSDictionary.
我该怎么做?
推荐答案
存储然后接收:
To store and then receive:
[[NSUserDefaults standardUserDefaults] setObject:myDictionary forKey:@"dictionaryKey"];
//...
NSDictionary * myDictionary = [[NSUserDefaults standardUserDefaults] dictionaryForKey:@"dictionaryKey"];
这篇关于如何在NSUserdefaults中存储NSDictionary以及如何从中检索它的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!