The type of the value to decode from the supplied JSON object. 供給されたJSONオブジェクトからデコードすることになる値の型。
Generic Instance Method
総称体インスタンスメソッド
decode(_:
decode(_:from:)
Returns a value of the type you specify, decoded from a JSON object.
あなたが指定する型の値を返します、JSONオブジェクトからデコードされます。
Availability 有効性
- iOS 7.0+
- iPadOS 7.0+
- macOS 10.9+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
Parameters パラメータ
type
data
The JSON object to decode. デコードするJSONオブジェクト。
Return Value 戻り値
A value of the specified type, if the decoder can parse the data. 指定された型のある値、もしデコーダがデータを構文解析できるならば。
Discussion 議論
If the data isn’t valid JSON, this method throws the Decoding
error. If a value within the JSON fails to decode, this method throws the corresponding error.
データが有効なJSONでないならば、このメソッドはDecoding
エラーをスローします。JSON内部の値がデコードに失敗するならば、このメソッドは対応するエラーをスローします。