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 に答える