Created
January 31, 2013 09:07
-
-
Save npinto/4681514 to your computer and use it in GitHub Desktop.
Revisions
-
npinto created this gist
Jan 31, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,32 @@ UIImageOrientation imageOrientation; if (UserDefaults.usingFrontCamera) { switch (curDeviceOrientation) { case UIDeviceOrientationLandscapeLeft: imageOrientation = UIImageOrientationDown; break; case UIDeviceOrientationLandscapeRight: imageOrientation = UIImageOrientationUp; break; case UIDeviceOrientationPortraitUpsideDown: imageOrientation = UIImageOrientationLeft; break; default: imageOrientation = UIImageOrientationRight; break; } } else { switch (curDeviceOrientation) { case UIDeviceOrientationLandscapeLeft: imageOrientation = UIImageOrientationUp; break; case UIDeviceOrientationLandscapeRight: imageOrientation = UIImageOrientationDown; break; case UIDeviceOrientationPortraitUpsideDown: imageOrientation = UIImageOrientationLeft; break; default: imageOrientation = UIImageOrientationRight; break; } }