文書   >   Foundation   >   Archives and Serialization   >   JSONDecoder   >   JSONDecoder.DateDecodingStrategy
列挙型
JSONDecoder.DateDecodingStrategy
JSON から日付を復号化するときに使用できる戦略。
トピックス
デフォルトの形式
case deferredToDate
Date 構造体からの書式設定を使用する戦略。
標準の形式
case iso8601
ISO 8601 標準に従って日付をフォーマットする戦略。
カスタムの形式
case formatted(DateFormatter)
書式設定を指定された日付形式に委ねる戦略。
case custom((Decoder) )
ユーザー定義関数を呼び出すことによってカスタムの日付を形式化する戦略。
新時代の形式
UTC 1970 年 1 月 1 日の深夜 0 時からのミリ秒単位で日付を復号化する戦略。
case secondsSince1970
UTC 1970 年 1 月 1 日の深夜 0 時からの秒数で日付を復号化する戦略。
以下も見よ
日付の復号化
var dateDecodingStrategy: JSONDecoder.DateDecodingStrategy
JSON オブジェクトの一部から日付を復号化するときに使用される戦略。