iOS Question Will be reloaded page when orientation change.

mehdipass

Member
Hi,
Orientations:
#iPhoneOrientations: Portrait, LandscapeLeft, LandscapeRight
My project this attributes.
Now when I change page orientation by rotate my iphone , the page reload again.
Why?
How to fixed it?
I don't want the page to reload.
In android and b4a I write this code in manifest and work well:
Orientation:
SetActivityAttribute(myActivity, android:screenOrientation,"sensorLandscape")
SetActivityAttribute(myActivity, android:configChanges,"orientation|screenSize|keyboardHidden")
 
Top