Inheritance: UITableViewCell
Exemplo n.º 1
0
		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;
		}	
Exemplo n.º 2
0
        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);
        }