iphone - Dismiss modal and push a segue -


i'm pretty new @ ios development , i'm stuck using storyboards. i've modal view (zoekcriteriaviewcontroller) button on it. when button pressed dismiss view , push tableviewcontroller.. i'm getting error: not find navigation controller segue 'searchedsegue'.

the segue zoekcriteriaviewcontroller kroegentableviewcontroller called searchedsegue

the code i'm using (c#):

                this.dismissviewcontroller(true, () => {                 this.performsegue("searchedsegue", this);             }); 

my storyboard: enter image description here

is able me out issue?

when using segues, don't dismiss calling controllers! do

this.performsegue("searchedsegue", this);  

Comments

Popular posts from this blog

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -

python - How to create a legend for 3D bar in matplotlib? -