protected override UITableViewCell GetOrCreateCellFor(UITableView tableView, NSIndexPath indexPath, object item) { UITableViewCell cell = tableView.DequeueReusableCell(CellIdentifier); if (cell == null) { cell = new CustomerListTableViewCell(UITableViewCellStyle.Subtitle, CellIdentifier); cell.Accessory = UITableViewCellAccessory.DisclosureIndicator; } return cell; }
protected override UITableViewCell GetOrCreateCellFor(UITableView tableView, NSIndexPath indexPath, object item) { UITableViewCell cell = tableView.DequeueReusableCell(CellIdentifier); if (cell == null) { cell = new CustomerListTableViewCell(UITableViewCellStyle.Subtitle, CellIdentifier); cell.Accessory = UITableViewCellAccessory.DisclosureIndicator; } return(cell); }