public override UITableViewCell GetCell (UITableView tableView, NSIndexPath indexPath) { ExpenseViewCell cell = tableView.DequeueReusableCell (cellIdentifier) as ExpenseViewCell; if (cell == null) cell = new ExpenseViewCell (cellIdentifier); cell.UpdateCell ("5/17/2013", "cab", "$40"); return cell; }
public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath) { ExpenseViewCell cell = tableView.DequeueReusableCell(cellIdentifier) as ExpenseViewCell; if (cell == null) { cell = new ExpenseViewCell(cellIdentifier); } cell.UpdateCell("5/17/2013", "cab", "$40"); return(cell); }