The parentViewController property of UIViewController is readonly, but I am nesting custom view controllers and would like to use this property.
However, since it is re
It looks like calling the setParentViewController: method works.
[childViewController setParentViewController:self];
However this still generates a compiler Warning. Which, IMO, means don't do it (I subclassed instead).