var userInfo : [CodingUserInfoKey : Any]
A dictionary you use to customize decoding by providing contextual information.
文脈上の情報を提供することによってデコーディングをカスタマイズするためにあなたが使う辞書。
Availability 有効性
Technology
func decode<T>(_ type: T.Type, from data: Data
, format: inout PropertyListSerialization
.PropertyListFormat
) throws -> T where T : Decodable
If the data is not a valid property list, this method throws the Decoding
error. If a value within the property list fails to decode, this method throws the corresponding error.
データが有効なプロパティリストでないならば、このメソッドはDecoding
エラーをスローします。プロパティリスト内のある値がデコードに失敗するならば、このメソッドは対応するエラーをスローします。
var userInfo : [CodingUserInfoKey : Any]