Cirrious.MvvmCross.Dialog.Touch.Dialog.Elements.Element.RemoveTag C# (CSharp) Method

RemoveTag() static protected method

static protected RemoveTag ( UITableViewCell cell, int tag ) : void
cell UITableViewCell
tag int
return void
		static protected void RemoveTag (UITableViewCell cell, int tag)
		{
			var viewToRemove = cell.ContentView.ViewWithTag (tag);
			if (viewToRemove != null)
				viewToRemove.RemoveFromSuperview ();
		}