Class
ISO8601DateFormatter
A formatter that converts between dates and their ISO 8601 string representations.
日付とそれらのISO 8601文字列表現の間で変換をするフォーマッタ。
Overview
概要
The ISO8601DateFormatter
class generates and parses string representations of dates following the ISO 8601 standard. Use this class to create ISO 8601 representations of dates and create dates from text strings in ISO 8601 format.
ISO8601DateFormatter
クラスは、日付の文字列表現をISO 8601規格に従って生成および構文解析します。このクラスを使って日付のISO 8601表現を作成してください、そしてISO 8601形式でのテキスト文字列から日付を作成してください。
Topics
話題
Configuring the Formatter
フォーマッタを構成設定する
var timeZone: TimeZone!
The time zone used to create and parse date representations. When unspecified, GMT is used.
日付表現の作成と構文解析に使われるタイムゾーン。指定されない場合、GMTが使われます。
Creating ISO 8601 Date Formatters
ISO 8601日付フォーマッタを作成する
init()
Initializes an ISO 8601 date formatter with default format, time zone, and options.
ISO 8601日付フォーマッタを省略時の書式設定、タイムゾーン、そしてオプションで初期化します。
Converting ISO 8601 Dates
ISO 8601日付を変換する
func date(from: String) -> Date?
Creates and returns a date object from the specified ISO 8601 formatted string representation.
指定されたISO 8601書式設定された文字列表現から日付オブジェクトを作成して返します。
See Also
参照
Date Formatting
日付を書式設定する
class DateFormatter
A formatter that converts between dates and their textual representations.
日付とそれらのテキスト表現の間で変換をするフォーマッタ。