3

我想将数据(键、值对)保存在设备存储中,然后再读取它们(即使应用程序退出并再次启动)。

在 iOS 中,我使用 NSUserDefaults 执行此操作。


我试过IsolatedStorageSettings,像这样:
IsolatedStorageSettings appSettings = IsolatedStorageSettings.ApplicationSettings; appSettings.Add("myKey","myValue");

但是当我在模拟器中重新启动应用程序并尝试获取 appSettings["myKey"]价值时,我得到了一个异常:System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.

4

1 回答 1

2

啊,我找到了:))

我忘了调用 save() 方法:)
appSettings.Save();

于 2013-10-18T07:58:26.590 回答