Instance Property
インスタンスプロパティ
integerValue
The NSInteger
value of the string.
文字列のNSInteger
値。
Discussion
議論
The NSInteger
value of the string, assuming a decimal representation and skipping whitespace at the beginning of the string. This property is 0
if the string doesn’t begin with a valid decimal text representation of a number.
文字列のNSInteger
値、10進表現を仮定しています、そして文字列の始まりでの空白を飛ばします。このプロパティは0
です、もしある数の有効な10進テキスト表現で、文字列が始まらないならば。
This property uses formatting information stored in the non-localized value; use an NSScanner
object for localized scanning of numeric values from a string.
このプロパティは、ローカライズされない値において格納される書式設定情報を使います;NSScanner
オブジェクトを文字列から数値のローカライズされた走査をするのに使ってください。
See Also
参照
Getting Numeric Values
数値を取得する
doubleValue
The floating-point value of the string as a double
.
文字列の浮動小数点値、double
として。
floatValue
The floating-point value of the string as a float
.
文字列の浮動小数点値、float
として。
intValue
The integer value of the string.
文字列の整数値。
boolValue
The Boolean value of the string.
文字列のブール値。
Related Documentation
関連文書
- scanInt:
Scans for an int value from a decimal representation, returning a found value by reference.
ある10進表現からint値を走査します、見つかった値を参照によって返します。