- stringFromNumber:
+ localizedStringFromNumber:numberStyle:
Availability 有効性
Technology
anObject
On return, contains an instance of NSDecimal
or NSNumber
based on the current value of the generates
property. Returns nil
by reference if conversion failed.
戻りでは、NSDecimal
またはNSNumber
のインスタンスを、generates
プロパティの現在の値に基づき含みます。もし変換が失敗したならば参照によってnil
を返します。
aString
A string object with the range of characters specified in rangep
that is used to create an
.
rangep
において指定される文字の範囲での文字列オブジェクト、それはan
を作成するのに使われます。
rangep
A range of characters in a
. On return, contains the actual range of characters used to create the object.
a
の中の文字それらの範囲。戻りでは、オブジェクトを作成するのに使われた文字の実際の範囲。
error
If an error occurs, upon return contains an NSError
object in the NSCocoa
with code NSFormatting
that explains why the conversion failed. If you pass in nil
for error
you are indicating that you are not interested in error information.
エラーが発生するならば、戻りではコードNSFormatting
をもつNSCocoa
の中のあるNSError
オブジェクトを含みます、それはなぜ変換が失敗したかを説明します。あなたがnil
をerror
に渡すならば、あなたがエラー情報を重要に思っていないことをあなたは指し示しています。
YES
if the conversion from string to cell-content object was successful, otherwise NO
.
YES
、もし文字列からセル内容オブジェクトへの変換が成功したならば、そうでなければNO
。
If a string contains any characters other than numerical digits or locale-appropriate group or decimal separators, parsing will fail. 文字列が数の桁もしくはロケールに適切なグループまたは小数の分離子とは異なった何らかの文字を持つならば、構文解析は失敗するでしょう。
Any leading or trailing space separator characters in a string are ignored. For example, the strings “ 5”, “5 ”, and “5” all produce the number 5
.
文字列におけるあらゆる先行または後続の空白分離子文字は無視されます。例えば、文字列 “ 5”、“5 ”、そして “5” は全て数5
を生成します。
If there is an error, this method calls control:
on the delegate.
エラーがあるならば、このメソッドはcontrol:
を委任先で呼び出します。
Handling Errors in Swift: Swiftでのエラー処理:
In Swift, this method returns Void
and is marked with the throws
keyword to indicate that it throws an error in cases of failure.
Swiftでは、このメソッドはVoid
を返します、そして失敗の場合にエラーをスローすることを指し示すためにthrows
キーワードで印されます。
You call this method in a try
expression and handle any errors in the catch
clauses of a do
statement, as described in Error Handling in The Swift Programming Language and About Imported Cocoa Error Parameters.
あなたはこのメソッドをtry
式の中で呼び出して、あらゆるエラーをdo
文のcatch
節で取り扱います、The Swift Programming Languageのエラー処理そしてインポートされるCocoaエラーパラメータについてで記述されるように。
- stringFromNumber:
+ localizedStringFromNumber:numberStyle: