iphone Programming Glossary: fromorientation
Rotate UIViewController to counteract changes in UIInterfaceOrientation http://stackoverflow.com/questions/2489845/rotate-uiviewcontroller-to-counteract-changes-in-uiinterfaceorientation Is this possible Currently I'm doing really gross stuff like this void rotate UIInterfaceOrientation fromOrientation toOr UIInterfaceOrientation toOrientation if fromOrientation UIInterfaceOrientationPortrait toOrientation UIInterfaceOrientationLandscapeRight.. gross stuff like this void rotate UIInterfaceOrientation fromOrientation toOr UIInterfaceOrientation toOrientation if fromOrientation UIInterfaceOrientationPortrait toOrientation UIInterfaceOrientationLandscapeRight fromOrientation UIInterfaceOrientationPortraitUpsideDown.. toOrientation if fromOrientation UIInterfaceOrientationPortrait toOrientation UIInterfaceOrientationLandscapeRight fromOrientation UIInterfaceOrientationPortraitUpsideDown toOrientation UIInterfaceOrientationLandscapeLeft if fromOrientation UIInterfaceOrientationLandscapeRight..
|