我坚持如何将 MvxBindableTableViewCell 的附件绑定到布尔值。
我将表的 ItemsSource 绑定到 ViewModel 中的列表,显示了一个不错的可点击项目列表。
但是我希望单元格的附件(UITableViewCellAccessory.Checkmark)仅在标记此对象时显示。通过标记我的意思是模型中的布尔值设置为真。
有谁知道怎么绑定手机的配件吗?
编辑:我可以根据模型的布尔值显示附件,但它没有绑定。
protected override UITableViewCell GetOrCreateCellFor(UITableView tableView, NSIndexPath indexPath, object item)
{
UITableViewCell cell = tableView.DequeueReusableCell(CellIdentifier);
if (cell == null)
cell = new PlotsTableViewCell(UITableViewCellStyle.Subtitle, CellIdentifier);
Plot p = (Plot)item;
if (p.Done)
cell.Accessory = UITableViewCellAccessory.Checkmark;
return cell;
}