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:
is able me out issue?
when using segues, don't dismiss calling controllers! do
this.performsegue("searchedsegue", this);
Comments
Post a Comment