Container UIViewController Not Releasing it's Child View Controllers
I have a custom container UIViewController that has six child UIViewControllers, and a set of tabs that the user interacts with to switch between the child view controllers. The problem is when my container view controller is released the child view controllers are not. I have verified that the child view controllers are not released by adding some debugging code to their dealloc methods, and they are released as long as their view's are not added to the container view controller's view. Below is an a excerpt of the code I'm using to create my custom container view controller. The