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

GetCell() public method

public GetCell ( UITableView tv ) : UITableViewCell
tv UITableView
return UITableViewCell
		public override UITableViewCell GetCell (UITableView tv)
		{
			BooleanElementCell cell = (BooleanElementCell)tv.DequeueReusableCell(typeof(BooleanElementCell).ToString());
			if (cell == null){
				cell = new BooleanElementCell();
			} 
			cell.Update(this);
			
			return cell;
		}	
	}