ArcGISRuntimeXamarin.SamplesViewController.SamplesDataSource.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)
            {
                var cell = new UITableViewCell();
                var item = data[indexPath.Row];
                cell.TextLabel.Text = (item as SampleModel).Name;
                return cell;
            }