MonoTouch.Dialog.iPhoneBooleanElement.GetCell C# (CSharp) Метод

GetCell() публичный Метод

public GetCell ( UITableView tv ) : UITableViewCell
tv UITableView
Результат 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;
		}	
	}