iphone - Does storyboard support Push Pop operations? -


i working on storyboards , including oauth library 1.0 authenticate users.

the library contains push pop operations .xib files. navigation supported have main storyboard iphone.

or have recreate views library classes in storyboard allow this?

any appreciated

thanks vikas

yes, stated above, xib features supported in storyboards. they're used differently...

to programmatically push, can use this:

   uiviewcontroller *mycontroller = [self.storyboard instantiateviewcontrollerwithidentifier:@"myid"];     [self.navigationcontroller pushviewcontroller:mycontroller animated:yes]; 

enter image description here

and use pop root:

[self.navigationcontroller poptorootviewcontrolleranimated:yes]; 

Comments

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -