func transformedValue (Any?) -> Any?
The value to reverse transform. 逆変換する値。
Availability 有効性
Technology
func reverseTransformedValue(_ value: Any?) -> Any?
value
The value to reverse transform. 逆変換する値。
The reverse transformation of value
.
value
の逆変換。
The default implementation raises an exception if allows
returns false
; otherwise it will invoke transformed
with value
.
省略時の実装は、例外を引き起こします、もしallows
がfalse
を返すならば;そうでなければそれはtransformed
をvalue
で発動します。
A subclass should override this method if they require a reverse transformation that is not the same as simply reapplying the original transform (as would be the case with negation, for example). For example, if a value transformer converts a value in Fahrenheit to Celsius, this method would converts a value from Celsius to Fahrenheit. サブクラスは、このメソッドをオーバーライドするべきです、もしそれが単純に元の変換を再び適用する(否定での場合でするように、例えば)のと同じでない逆変換を必要とするならば。例えば、ある値変換器が摂氏でのある値を華氏に変換するならば、このメソッドは値を華氏から摂氏へと変換するでしょう。
func transformedValue (Any?) -> Any?