There are two UIViewControllers: MyParentViewController, and MyToolbarViewController. MyParentViewController manages a view which fills most of the screen. MyToolbarViewController is a subview of MyParentViewController, and manages a comparatively small view at a higher z-index than the view managed by its parent, MyParentViewController.
Because MyParentViewController's view is higher up in the view hierarchy, its shouldAutorotateToDeviceOrientation method seems to trump that of MyToolbarViewController's. Whatever it returns is the value that is used. I am not seeing MyToolbarViewController's didAutorotateFromDeviceOrientation get called, however. Is it my responsibility to override MyParentViewController didAutorotateFromDeviceOrientation and call the method on the subview?