2012-11-20 10:40:35 +00:00
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2010-10-01 02:36:21 +00:00
|
|
|
typedef enum {
|
2012-11-20 10:40:35 +00:00
|
|
|
DisplayOrientationDefault = UIInterfaceOrientationMaskAll,
|
|
|
|
DisplayOrientationLandscapeLeft = UIInterfaceOrientationMaskLandscapeLeft,
|
|
|
|
DisplayOrientationLandscapeRight = UIInterfaceOrientationMaskLandscapeRight,
|
|
|
|
DisplayOrientationPortrait = UIInterfaceOrientationMaskPortrait,
|
|
|
|
DisplayOrientationPortraitUpsideDown = UIInterfaceOrientationMaskPortraitUpsideDown
|
2010-10-01 02:36:21 +00:00
|
|
|
} DisplayOrientation;
|