date(withCalendarFormat:timeZone:)
Converts the receiver to a calendar date with a given format string and time zone.
Declaration
func date(withCalendarFormat format: String?, timeZone aTimeZone: TimeZone?) -> NSCalendarDateParameters
- format:
The format for the returned string (see Date and Number Formatters in OS X v10.0 to 10.3 for a discussion of how to create the format string). Pass
nilto use the default format string, “%Y-%m-%d %H:%M:%S %z” (this conforms to the international formatYYYY-MM-DD HH:MM:SS ±HHMM.) - aTimeZone:
The time zone for the new calendar date. Pass
nilto use the default time zone—specific to the current locale.
Return Value
A new NSCalendarDate object bound to format and the time zone aTimeZone.