我在 UITextView 上的 android 中设置了一个非常标准的绑定
local:MvxBind="Text Quantity"
其中 Quantity 是一个 int 属性。
如果我输入 123 ,那么它会被分配并调用 setter。当我删除该文本 123 -> 12 -> 1 -> 空字符串时,会为每个数字调用 setter,但不会为空字符串调用 setter,事实上会发生以下异常:
MvxBind:Error: 48.84 SetValue failed with exception - FormatException: Input string was not in the correct format
有没有办法在绑定中自动将空字符串值转换为 0?我需要一个价值转换器吗?这实际上是一个错误吗?
提前致谢。