Exemple #1
0
        protected void HandleTouchUpInsideIngredients(object sender, System.EventArgs e)
        {
            // Launches a new instance of IngredientsViewController
            IngredientsViewController useRecipeVC = this.Storyboard.InstantiateViewController("IngredientsViewController") as IngredientsViewController;

            if (useRecipeVC != null)
            {
                this.NavigationController.PushViewController(useRecipeVC, true);
            }
        }
Exemple #2
0
 public TableSourceIngredients(List <TableItem> items, IngredientsViewController owner)
 {
     tableItems = items;
     this.owner = owner;
 }