MonoTouch.Dialog.JsonElement.GetCell C# (CSharp) Method

GetCell() public method

public GetCell ( UITableView tv ) : UITableViewCell
tv UITableView
return UITableViewCell
		public override UITableViewCell GetCell (UITableView tv)
		{
			var cell = base.GetCell (tv);
			if (Url == null)
				return cell;

			var spinner = cell.ViewWithTag (SPINNER_TAG) as UIActivityIndicatorView;
			if (loading){
				if (spinner == null)
					StartSpinner (cell);
				else
					if (spinner != null)
						RemoveSpinner (cell, spinner);
			}
			return cell;
		}