Questions tagged [childviewcontroller]

childViewController is Apple's iOS Custom Container View Controller management style. Specifically the -addChildViewController: method facilitates Apple's iOS in order to combine multiple view controllers in a custom hierarchy (similar in concept to the UISplitViewController class)

242 questions
-3
votes
1 answer

How to pass a Json array value from parent viewcontroller to child viewcontroller using alamofire in swift

I am getting Json response in my parentviewcontroller and I want to pass the array value from that response to a childviewcontroller.
-4
votes
1 answer

Swift iOS -How to print a list of all Child View Controllers in Navigation Stack that haven't been pushed on yet

I have a navController with 4 vc's: navigationController FirstController SecondController ThirdController FourthController When I'm on the FirstController I want to print out a list of all the child vcs that haven't been pushed on the stack. I…
1 2 3
16
17