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