ios - How to get out of a UIStoryboard initialized in code -


i have main container controller initializes child view controllers.

i'm trying learn use uistoryboards tho , i'm stumped how out of storyboard.

here's flow:

enter image description here

once end of storyboard's scenes, how should out of storyboard , container controller?

should keep pointer storyboard? it?

should keep pointer initial view controller (which 1 explicitly add child)? it's .view won't on screen @ end don't know either.

try looping through childviewcontrollers

for (uiviewcontroller *vc in self.childviewcontrollers) {     // } 

Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -