- objectForKey:
- URLForKey:
- arrayForKey:
- dictionaryForKey:
- stringForKey:
- stringArrayForKey:
- dataForKey:
- integerForKey:
- floatForKey:
- doubleForKey:
- dictionaryRepresentation
Availability 有効性
Technology
- (BOOL)boolForKey:(NSString
*)defaultName;
defaultName
A key in the current user‘s defaults database. 現在のユーザのもつdefaultsデータベースの中のあるキー。
The Boolean value associated with the specified key. If the specified key doesn‘t exist, this method returns NO
.
指定されたキーと結びつけられたブール値。指定されたキーが存在しないならば、このメソッドはNO
を返します。
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
に矯正されます。
- objectForKey:
- URLForKey:
- arrayForKey:
- dictionaryForKey:
- stringForKey:
- stringArrayForKey:
- dataForKey:
- integerForKey:
- floatForKey:
- doubleForKey:
- dictionaryRepresentation
- setBool:forKey: