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

            if (useRecipeVC != null)
            {
                this.NavigationController.PushViewController(useRecipeVC, true);
            }
        }
 public TableSourceKitchenSlang(List <TableItem> items, KitchenSlangViewController owner)
 {
     tableItems = items;
     this.owner = owner;
 }