Exemplo n.º 1
0
        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);
            }
        }
Exemplo n.º 2
0
 public TableSourcePrepSteps(List <TableItem> items, PrepStepsViewController owner)
 {
     tableItems = items;
     this.owner = owner;
 }