I am having an issue my app not loading properly when it initially loads in an orientation other than UIDeviceOrientationPortrait. I support all orientations, and after the initial loading I can properly rotate into any orientation.
It also works to close and reopen the app in any orientation. It only seems to be the initial loading that is causing problems. Any ideas on what might be happening?
I don’t even know what code to post to try to demonstrate the issue. Thanks!
It turns out the problem was due to having a “container” view controller and then additional view controllers on the screen that weren’t taking up the entire screen. When loading my modal view, I was doing it from one of the smaller view controllers, not the container. Moving the modal view presentation into the container fixed the issue. Thanks for getting me thinking in the right direction.