ios JASidePanels make the UINavigationController the centerViewController -


in application using jasidepanels libraries, set , working using storyboards, push center view detail view clicking on tableviewcell, , assuming need uinavigationcontroller, can somehow make centerviewcontroller start uinavigationcontroller?

you have put storyboard identifier navigation controller embeds main view controller want have center panel; then, set center panel initialized in "base" view controller (the 1 subclassed jasidepanelcontroller).

// hamburger menu setup -(void) awakefromnib {     [self setleftpanel:[self.storyboard instantiateviewcontrollerwithidentifier:@"menuviewcontroller"]];     [self setcenterpanel:[self.storyboard instantiateviewcontrollerwithidentifier:@"maindashboardnavigationcontroller"]]; } 

where "maindashboardnavigationcontroller" storyboard identifier set uinavigationcontroller embeds want present center panel.

hope helps you, see screenshot in link below more details. xcode screenshot


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -