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
Post a Comment