protected void HandleTouchUpInsidePrepSteps(object sender, System.EventArgs e) { // Launches a new instance of PrepStepsViewController PrepStepsViewController useRecipeVC = this.Storyboard.InstantiateViewController("PrepStepsViewController") as PrepStepsViewController; if (useRecipeVC != null) { this.NavigationController.PushViewController(useRecipeVC, true); } }
public TableSourcePrepSteps(List <TableItem> items, PrepStepsViewController owner) { tableItems = items; this.owner = owner; }