Пример #1
0
        protected void HandleTouchUpInsideKitchenSecrets(object sender, System.EventArgs e)
        {
            // Launches a new instance of KitchenSecretsViewController
            KitchenSecretsViewController useRecipeVC = this.Storyboard.InstantiateViewController("KitchenSecretsViewController") as KitchenSecretsViewController;

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