Initializer

init(_:store:)

Creates a property that can read and write an Optional integer user default.

Declaration 宣言

init(_ key: String, store: UserDefaults? = nil) where Value == Optional<Int>
Available when Value conforms to ExpressibleByNilLiteral. ValueExpressibleByNilLiteralに準拠する場合に利用可能です。

Parameters パラメータ

key

The key to read and write the value to in the user defaults store. user defaults storeにおいてその値を読み出すそして書き出すためのキー。

store

The user defaults store to read and write to. A value of nil will use the user default store from the environment. それに読み出しおよび書き出しするuser defaults store。nilの値は、その環境からのuser default storeを使います。

Discussion 議論

Defaults to nil if there is no restored value.

See Also 参照

Storing an Optional Value