MonoTouch.Dialog.BaseBooleanImageElement.GetCell C# (CSharp) Method

GetCell() public method

public GetCell ( UITableView tv ) : UITableViewCell
tv UITableView
return UITableViewCell
        public override UITableViewCell GetCell(UITableView tv)
        {
            var cell = tv.DequeueReusableCell (key) as TextWithImageCellView;
            if (cell == null)
                cell = new TextWithImageCellView (this);
            else
                cell.UpdateFrom (this);
            return cell;
        }