I'm creating a popoverSegue from a new view controller and want to push a third view controller onto the original stack. This is how I'm creating the application:
- Create a new
Single View Application - Select
Use Storyboards - Select the
MainStoryboard.storyboardfile. - Select the only View Controller, change the
TitleandIdentifiertoinitialView, then selectEditor->Embed In->Navigation Controller - Drag two new
View Controllerobjects from the Objects Library onto the canvas - Change the
TitleandIdentifierof the new View Controllers to:popoverViewandnewView. - Add a
Round Rect Buttonobject from the Object Library toinitialViewandpopoverView. - Add a
Labelobject from the Object Library to `newView. - Control click the button in the
initialViewand drag topopoverView. - Select the
Popoveroption from theStoryboard Seguesmenu that appears. - Control click the button in the
popoverViewand drag to thenewView. - Select the
Pushoption fromt theStoryboard Seguesmenu. - Build & Run.
Click the first button, and the popover appears, but when you click the button within the popover, nothing happens (it should push the new view but doesn't.)
What I want to do is for it to push onto the Navigation Controller stack, but am not sure how to setup the storyboard for that.
Any ideas?