I have an application with multiple screens. Some of those screens support Portrait and Landscape and others only support Portrait (it's a strange app, but it was a business requirement for the client). On Android I was able to get this working by calling `setRequestedOrientation` and using the Accelerometer to determine the orientation and based on the current screen define which orientation should be used. However, I can't seem to determine how to accomplish this on iOS with RoboVM.
Is there any way to programmatically set the current orientation? I have looked at `UIViewController.getSupportedInterfaceOrientations()`, but I don't see how I could use that without having to completely replace the root view controller with a custom one (using libgdx).
Thanks