Exemple #1
0
		void MoveCellOutOfSight(CCTableViewCell cell)
		{
			if (Delegate != null)
			{
				Delegate.TableCellWillRecycle(this, cell);
			}

			cellsFreed.Add(cell);
			cellsUsed.RemoveSortedObject(cell);
			indices.Remove(cell.Index);
			cell.Reset();
			if (cell.Parent == Container)
			{
				Container.RemoveChild(cell, true);
			}
		}