Cirrious.MvvmCross.Dialog.Touch.Dialog.Elements.Element.GetCell C# (CSharp) Method

GetCell() public method

Gets a UITableViewCell for this element. Must not be overridden - override GetCellImpl instead
public GetCell ( UITableView tv ) : UITableViewCell
tv UITableView
return UITableViewCell
        public UITableViewCell GetCell(UITableView tv)
		{
		    var cell = GetCellImpl(tv);
		    CurrentAttachedCell = cell;
		    UpdateCellDisplay(cell);
            return cell;
        }