// TODO public override UITableViewCell GetCell(UITableView tableView, Foundation.NSIndexPath indexPath) { var player = Players [indexPath.Row]; var cell = tableView.DequeueReusableCell (LeaderboardTableViewCell.Key) as LeaderboardTableViewCell; if (cell == null) { cell = new LeaderboardTableViewCell (); } cell.Setup (player); return cell; }
// TODO public override UITableViewCell GetCell(UITableView tableView, Foundation.NSIndexPath indexPath) { var player = Players [indexPath.Row]; var cell = tableView.DequeueReusableCell(LeaderboardTableViewCell.Key) as LeaderboardTableViewCell; if (cell == null) { cell = new LeaderboardTableViewCell(); } cell.Setup(player); return(cell); }