コード例 #1
0
ファイル: ExpenseView.cs プロジェクト: McKabue/TripXpense
		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;
		}
コード例 #2
0
ファイル: ExpenseView.cs プロジェクト: stash95/TripXpense
        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);
        }