public UITableViewCell GetFinalPunchListCell(UITableView tableView, Foundation.NSIndexPath indexPath) { FinalPunchCell cell = tableView.DequeueReusableCell(cellFinalPunchIdentifier) as FinalPunchCell; cell.UpdateCell(this.parentController, tableView, indexPath, this.checkListItems [indexPath.Row]); return(cell); }
public FinalPunchTextViewDelegate(FinalPunchCell punchCell, UITableView itemTableView) { this.finalPunchCell = punchCell; this.ItemTableView = new WeakReference(itemTableView); }