func reverseTransformedValue (Any?) -> Any?
Returns the result of the reverse transformation of a given value.
与えられた値の逆変換の結果を返します。
Availability 有効性
Technology
func transformedValue(_ value: Any?) -> Any?
value
The value to transform. 変換する値。
The result of transforming value
.
value
を変換することの結果。
The default implementation simply returns value
.
省略時の実装は、単純にvalue
を返します。
A subclass should override this method to transform and return an object based on value
.
サブクラスは、このメソッドをオーバーライドしてあるオブジェクトをvalue
に基づいて変換して返すべきです。
func reverseTransformedValue (Any?) -> Any?