我不确定如何解决这个问题。绑定在模拟器上工作正常但在真实设备上失败 - iPad。
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();
});
}
答案 0 :(得分:0)
找到它,链接器优化导致问题将以下内容添加到LinkerPleaseInclude.cs文件
public class LinkerIncludePlease
{
public void Include(MvxTableViewCell vc)
{
vc.BackgroundColor = UIColor.Blue;
}
}