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

GetCell() public method

public GetCell ( UITableView tv ) : UITableViewCell
tv UITableView
return UITableViewCell
	    public override UITableViewCell GetCell (UITableView tv)
	    {
	        UITableViewCell cell = base.GetCell (tv);
			
			cell.SelectionStyle = UITableViewCellSelectionStyle.Blue;
	        cell.Accessory = UITableViewCellAccessory.DisclosureIndicator;
	        return cell;
	    }