Instance Method
インスタンスメソッド
bool(forKey:)
Returns the Boolean value associated with the specified key.
指定されたキーと結びつけられたブール値を返します。
Parameters
パラメータ
defaultName
A key in the current user‘s defaults database.
現在のユーザのもつdefaultsデータベースの中のあるキー。
Return Value
戻り値
The Boolean value associated with the specified key. If the specified key doesn‘t exist, this method returns false
.
指定されたキーと結びつけられたブール値。指定されたキーが存在しないならば、このメソッドはfalse
を返します。
Discussion
議論
This method automatically coerces certain ”truthy” values—such as the strings "true", "YES", and "1", and the numbers 1 and 1.0—to the Boolean value true
. The same is true for certain ”falsy” values—such as the strings "false", "NO", and "0", and the numbers 0 and 0.0—which are automatically coerced to the Boolean value false
.
このメソッドは自動的に特定の ”真実性の” 値 — たとえば文字列 "true"、"YES"、そして "1"、および数 1 と 1.0 など — をブール値true
に矯正します。同じことが特定の ”偽性の” 値に言えます — たとえば文字列 "false"、"NO"、そして "0"、および 0 と 0.0 など — それらは自動的にブール値false
に矯正されます。
See Also
参照
Getting Default Values
defaults値を取得する
Related Documentation
関連文書