Hi
I am currently working on a app project (using OF9.0) which requires fixed portrait layout for iPhones but allowing switching portrait and landscape layouts for iPad. While I have everything working as expected for all older models (and simulators) I am not managing to get it working for iPhone 6 and newer as well as for the iPad Pro.
In the case of the iPad Pro I am getting the (expected) screen size of 2732 x 2048 pixels, the actual display is missing about a a sixth on either side.
From Log:
2015-12-14 16:16:49.499 ParatPlus[2924:183660] device info: iPad
screen dimensions (w x h): 2732x2048
After rotating the screen the dimension reading differs:
2015-12-14 16:18:04.381 ParatPlus[2924:183660] Orientation changed to 2
Update to Portrait screen dimensions (w x h): 1536x2048
screen dimensions (w x h): 1536x2048
2015-12-14 16:18:09.127 ParatPlus[2924:183660] Orientation changed to 3
Update to Landscape screen dimensions (w x h): 2048x1536
screen dimensions (w x h): 2048x1536
2015-12-14 16:18:15.604 ParatPlus[2924:183660] Orientation changed to 1
Update to Portrait screen dimensions (w x h): 1536x2048
screen dimensions (w x h): 1536x2048
2015-12-14 16:18:20.307 ParatPlus[2924:183660] Orientation changed to 4
Update to Landscape screen dimensions (w x h): 2048x1536
screen dimensions (w x h): 2048x1536
with the effect that after rotations happen, the entire windoe is being displayed on the screen, however, with the apparent smaller resolution.
I am using ofSetOrientation()
currentOrientation = [[UIDevice currentDevice] orientation];
cout << deviceType << " currentOrientation " << currentOrientation << endl;
if(currentOrientation != 5)
{
ofSetOrientation((ofOrientation)currentOrientation);
}
For the iPhones newer than the iPhone 6, I experience the same issues. I have not been able to text with the actual devices, so I wouldn't be able to test whether there'd be a difference from the simulator.
Thanks!
Any help and pointers would be appreciated.