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

getObjectValue(_:for:range:)

Returns by reference a date representation of a specified string and its date range, as well as a Boolean value that indicates whether the system can parse the string. 指定された文字列とそれの日付範囲の日付表現を参照によって返します、それだけでなくあるブール値も、それはシステムがその文字列を構文解析できるかどうかを指し示すものです。

Declaration 宣言

func getObjectValue(_ obj: AutoreleasingUnsafeMutablePointer<AnyObject?>?, 
                for string: String, 
              range rangep: UnsafeMutablePointer<NSRange>?) throws

Parameters パラメータ

obj

If the receiver is able to parse string, upon return contains a date representation of string. レシーバがstringを構文解析可能ならば、戻りにおいて、stringの日付表現を含みます。

string

The string to parse. 構文解析する文字列。

rangep

If the receiver is able to parse string, upon return contains the range of string used to create the date. レシーバがstringを構文解析可能ならば、戻りにおいて、日付を作成するにの使われるstringの範囲を含みます。

error

If the receiver is unable to create a date by parsing string, upon return contains an NSError object that describes the problem. レシーバがstringを構文解析することによって日付を作成できないならば、戻りにおいて、問題を記述するNSErrorオブジェクトを含みます。

Return Value 戻り値

true if the receiver can create a date by parsing string, otherwise false. true、もしレシーバがstringを構文解析することによって日付を作成できるならば、そうでなければfalse

Discussion 議論

See Also 参照

Converting Objects オブジェクト変換

Related Documentation 関連文書