MonoMobile.Views.BaseDialogViewSource.UpdateCell C# (CSharp) Method

UpdateCell() public method

public UpdateCell ( UITableViewCell cell, NSIndexPath indexPath ) : void
cell UITableViewCell
indexPath NSIndexPath
return void
		public virtual void UpdateCell(UITableViewCell cell, NSIndexPath indexPath)
		{
//			cell.AccessoryView = null;
			cell.Accessory = IsSelectable ? UITableViewCellAccessory.None : UITableViewCellAccessory.DisclosureIndicator;	
			cell.Accessory = IsNavigable ? UITableViewCellAccessory.DisclosureIndicator : UITableViewCellAccessory.None;
		}
		#endregion