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]; 
and use pop root:
[self.navigationcontroller poptorootviewcontrolleranimated:yes];
Comments
Post a Comment