I develop in augmented reality application that needs to disable the automatic rotation animation done by the system. However, after enabling support for iOS 9 split screen multitasking (UIRequiresFullScreen is false in Info.plist), the rotation animation happens no matter what I do. In the past, I was able to return NO from the shouldAutorotate method of my view controller.
At this point, I have to choose: disable multitasking support, or provide a compromised experience. Is this a beta 1 bug or intended behavior? Or am I just missing some workaround?
Chris