MvxTableViewCell BackgroudColor绑定在iPad上失败,但在模拟器上工作

时间:2016-04-13 13:38:12

标签: mvvmcross

我不确定如何解决这个问题。绑定在模拟器上工作正常但在真实设备上失败 - 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();
    });
}

1 个答案:

答案 0 :(得分:0)

找到它,链接器优化导致问题将以下内容添加到LinkerPleaseInclude.cs文件

public class LinkerIncludePlease
{
        public void Include(MvxTableViewCell vc)
        {
            vc.BackgroundColor = UIColor.Blue;
        }
}