Instance Method インスタンスメソッド

boolForKey:

Returns the Boolean value associated with the specified key. 指定されたキーと結びつけられたブール値を返します。

Declaration 宣言

- (BOOL)boolForKey:(NSString *)defaultName;

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 NO. 指定されたキーと結びつけられたブール値。指定されたキーが存在しないならば、このメソッドはNOを返します。

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 YES. 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 NO. このメソッドは自動的に特定の ”真実性の” 値 — たとえば文字列 "true"、"YES"、そして "1"、および数 1 と 1.0 など — をブール値YESに矯正します。同じことが特定の ”偽性の” 値に言えます — たとえば文字列 "false"、"NO"、そして "0"、および 0 と 0.0 など — それらは自動的にブール値NOに矯正されます。

See Also 参照

Getting Default Values defaults値を取得する

Related Documentation 関連文書