Inheritance: UITableViewCell
		public override UITableViewCell GetCell (UITableView tv)
		{
			var cell = (AnimatingCell)tv.DequeueReusableCell (typeof(AnimatingCell).Name);
			if (cell == null){
				cell = new AnimatingCell(UITableViewCellStyle.Default, typeof(AnimatingCell).Name);
			}
			updateCell(cell);
			return cell;
		}
        public override UITableViewCell GetCell(UITableView tv)
        {
            var cell = (AnimatingCell)tv.DequeueReusableCell(typeof(AnimatingCell).Name);

            if (cell == null)
            {
                cell = new AnimatingCell(UITableViewCellStyle.Default, typeof(AnimatingCell).Name);
            }
            updateCell(cell);
            return(cell);
        }
 private void updateCell(AnimatingCell cell)
 {
     cell.TextLabel.Text = Caption;
     cell.Animating      = _animating;
 }
		private void updateCell(AnimatingCell cell){
			cell.TextLabel.Text = Caption;
			cell.Animating = _animating;
		}