public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath) { var cell = tableView.DequeueReusableCell(TableViewControllerCell.Key) as TableViewControllerCell; if (cell == null) cell = new TableViewControllerCell(); // TODO: populate the cell with the appropriate data based on the indexPath cell.DetailTextLabel.Text = "Can you delete me?"; return cell; }
public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath) { var cell = tableView.DequeueReusableCell(TableViewControllerCell.Key) as TableViewControllerCell; if (cell == null) { cell = new TableViewControllerCell(); } // TODO: populate the cell with the appropriate data based on the indexPath cell.DetailTextLabel.Text = "Can you delete me?"; return(cell); }