A value transformer is essentially a function which maps values of one
type to values of another type. If you can supply the inverse
function as well, then you do so using -allowsReverseTransformation
and -reverseTransformedValue:. This allows Cocoa to use your value
transformer to set values as well as transform them, but the reverse
transformation is actually a function (in the mathematical sense).
So for your app, you would probably want to store an NSNumber as your
model. Then, you would have three value transformers that would
essentially be the following functions: Number --> String (base 10),
Number --> String (base 16), Number --> String (base 2). You would
provide the reverse transformations in these value transformers as
well, since there is a functional relationship between a string of
digits and a number. Cocoa will use the model type --> view type
binding (Number --> String) for display, and then use the inverse
(String --> Number) for storage.
So your question about "binding reverseTransformedValue" doesn't
make any sense.
HTH,
--Kyle Sluder