class func date(withNaturalLanguageString : String) -> Any?
Creates and returns a date object set to the date and time specified by a given string.
与えられた文字列によって指定される日付と時刻に設定されるある日付オブジェクトを作成して返します。
class func date(withNaturalLanguageString : String, locale: Any?) -> Any?
Creates and returns a date object set to the date and time specified by a given string.
与えられた文字列によって指定される日付と時刻に設定されるある日付オブジェクトを作成して返します。
class func date(with: String) -> Any
Creates and returns a date object with a date and time value specified by a given string in the international string representation format (
YYYY-MM-DD HH:MM:SS ±HHMM
).
国際化文字列表現形式(YYYY-MM-DD HH:MM:SS ±HHMM
)で与えられる文字列によって指定される日付と時刻の値で日付オブジェクトを作成して返します。
init?(string: String)
Returns a date object initialized with a date and time value specified by a given string in the international string representation format.
国際化文字列表現形式で与えられる文字列によって指定される日付と時刻の値で初期化される日付オブジェクトを返します。
func date(withCalendarFormat : String?, timeZone : TimeZone?) -> NSCalendarDate
Converts the receiver to a calendar date with a given format string and time zone.
レシーバをある与えられた書式設定文字列とタイムゾーンでのあるカレンダー日付へ変換します。
func description(withCalendarFormat : String?, timeZone : TimeZone?, locale: Any?) -> String?
Returns a string representation of the date formatted as specified by given conversion specifiers.
与えられた変換指定子によって書式設定される日付の文字列表現を返します。