Exemplo n.º 1
0
		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;
		}
Exemplo n.º 2
0
        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);
        }