解雇模态并推动一个segue

时间:2013-05-21 11:08:43

标签: iphone ios xamarin.ios uistoryboard

我在iOS开发方面很陌生,我不习惯使用故事板。我有一个模态视图(ZoekCriteriaViewCOntroller),上面有一个按钮。当按下按钮时我想用视频关闭并推送我的tableviewcontroller ..我收到错误:无法找到segue'searchSegue'的导航控制器。

从ZoekCriteriaViewController到KRoegenTableViewController的segue被称为searchSegue

我正在使用的代码(C#):

                this.DismissViewController(true, () => {
                this.PerformSegue("searchedSegue", this);
            });

我的故事板: enter image description here

有人能帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

当您使用segues时,您不会解雇呼叫控制器!只是做

this.PerformSegue("searchedSegue", this);