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);
        }
Example #2
0
 public FinalPunchTextViewDelegate(FinalPunchCell punchCell, UITableView itemTableView)
 {
     this.finalPunchCell = punchCell;
     this.ItemTableView  = new WeakReference(itemTableView);
 }