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

GetCell() public method

public GetCell ( UITableView tv ) : UITableViewCell
tv UITableView
return UITableViewCell
		public override UITableViewCell GetCell (UITableView tv)
		{
			EntryElementCell cell = (EntryElementCell)tv.DequeueReusableCell(EntryElementCell.KEY);
			if (cell == null){
				cell = new EntryElementCell();
			} 
			
			cell.Update(this, tv);
				

			return cell;
		}