MonoMobile.Views.ListSource.GetCell C# (CSharp) Method

GetCell() public method

public GetCell ( UITableView tableView, NSIndexPath indexPath ) : UITableViewCell
tableView UITableView
indexPath NSIndexPath
return UITableViewCell
		public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
		{
			indexPath = NSIndexPath.FromRowSection(indexPath.Row, 0);

			var cell = CellFactory.GetCell(tableView, indexPath, CellId, NibName, (cellId, idxPath) => NewListCell(cellId, idxPath));

			UpdateCell(cell, indexPath);

			return cell;
		}