func date(from: String) -> Date?
func string(from: Date) -> String
class func localizedString (from: Date, dateStyle : DateFormatter.Style, timeStyle : DateFormatter.Style) -> String
Availability 有効性
Technology
func getObjectValue(_ obj: AutoreleasingUnsafeMutablePointer
<AnyObject?>?,
for string: String
,
range rangep: UnsafeMutablePointer
<NSRange
>?) throws
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オブジェクトを含みます。
true
if the receiver can create a date by parsing string
, otherwise false
.
true
、もしレシーバがstring
を構文解析することによって日付を作成できるならば、そうでなければfalse
。
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エラーパラメータについてで記述されるように。
func date(from: String) -> Date?
func string(from: Date) -> String
class func localizedString (from: Date, dateStyle : DateFormatter.Style, timeStyle : DateFormatter.Style) -> String
func string(for: Any?) -> String?