0
この問題にどのように対処するかはわかりません。バインディングはシミュレータ上で正常に動作しますが、実際のデバイス(iPad)では失敗します。それを見つけたMvxTableViewCell iPadでBackgroudColorバインディングが失敗しますが、シミュレータで動作します
public RunSheetItemView (IntPtr handle) : base (handle)
{
this.DelayBind (() => {
var set = this.CreateBindingSet<RunSheetItemView, RunSheetItemViewModel>();
set.Bind(this).For(v => v.BackgroundColor).To(vm => vm.Status).WithConversion("InspectionStatusColorConverter");
set.Apply();
});
}