MonoTouch.Dialog.iPhoneBooleanElement.GetCell C# (CSharp) Méthode

GetCell() public méthode

public GetCell ( UITableView tv ) : UITableViewCell
tv UITableView
Résultat 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;
		}	
	}