MonoTouch.Dialog:在OwnerDrawnElement中设置Disclosure Indicator Clear

时间:2012-07-01 04:26:42

标签: c# ios uitableview xamarin.ios monotouch.dialog

我有一个自定义OwnerDrawnElement,我在其中覆盖GetCell以添加Disclosure Indicator,但它不透明。如何制作DisclosureIndicator transparent以便查看单元格的外观?

    public override UITableViewCell GetCell(UITableView tv)
    {
        var cell =  base.GetCell(tv);
        cell.Accessory = UITableViewCellAccessory.DisclosureIndicator;
        return cell;
    }

结果: enter image description here

0 个答案:

没有答案