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

GetCellImpl() protected method

Gets a UITableViewCell for this element. Can be overridden, but if you customize the style or contents of the cell you must also override the CellKey property in your derived class.
protected GetCellImpl ( UITableView tv ) : UITableViewCell
tv UITableView
return UITableViewCell
        protected virtual UITableViewCell GetCellImpl(UITableView tv)
		{
			return new UITableViewCell (UITableViewCellStyle.Default, CellKey);
		}