Cirrious.MvvmCross.Dialog.Touch.Dialog.Elements.HtmlElement.GetCellImpl C# (CSharp) Метод

GetCellImpl() защищенный Метод

protected GetCellImpl ( UITableView tv ) : UITableViewCell
tv UITableView
Результат UITableViewCell
        protected override UITableViewCell GetCellImpl (UITableView tv)
        {
            var cell = tv.DequeueReusableCell (CellKey);
            if (cell == null){
                cell = new UITableViewCell (UITableViewCellStyle.Default, CellKey);
                cell.SelectionStyle = UITableViewCellSelectionStyle.Blue;
            }
            cell.Accessory = UITableViewCellAccessory.DisclosureIndicator;
			
            return cell;
        }