- objectForKey:
- URLForKey:
- arrayForKey:
- dictionaryForKey:
- stringForKey:
- stringArrayForKey:
- dataForKey:
- boolForKey:
- integerForKey:
- doubleForKey:
- dictionaryRepresentation
Availability 有効性
Technology
- (float)floatForKey:(NSString
*)defaultName;
defaultName
A key in the current user‘s defaults database. 現在のユーザのもつdefaultsデータベースの中のあるキー。
The float value associated with the specified key. If the key doesn‘t exist, this method returns 0
.
指定されたキーと結びつけられたfloat値。キーが存在しないならば、このメソッドは0
を返します。
This method automatically coerces certain values into equivalent float values (if one can be determined). The Boolean value YES
becomes 1
and NO
becomes 0
. An integer becomes the equivalent float (for example, 2
becomes 2
). A string that represents a floating point number becomes the equivalent float (for example “123.4“ becomes 123
).
このメソッドは、自動的に特定の値を同等のfloat値へと強制します(もしそれが決定されることが可能ならば)。ブール値YES
は、1
になります、そしてNO
は0
になります。ある整数は、同等のfloatになります(例えば、2
は2
になります)。浮動小数点数を表している文字列は、同等のfloatになります(例えば “123.4“ は、123
になります)。
- objectForKey:
- URLForKey:
- arrayForKey:
- dictionaryForKey:
- stringForKey:
- stringArrayForKey:
- dataForKey:
- boolForKey:
- integerForKey:
- doubleForKey:
- dictionaryRepresentation
- setFloat:forKey: