I had set up supported orientations to DisplayOrientation.LandscapeRight, also set in the info.plist file.
And set the PreferredBackBufferWidth.
But still not work on my device( iphone 5).
The device always showed the wrong size 480x320.
I tried to go into the file iOSGameWindow.cs.
The property named ClientBounds seems to be not right.
var bounds = _viewController.View.Bounds;
var scale = _viewController.View.ContentScaleFactor;
The scale is 2.0 which is right.But the bounds is not the iphone5’s size.
So, anyone had met this problem before?