How to do orientations in iphone and ipad for ios 6? previous versions showing shouldrotateinterfaceorientation but latest version not showing ?
iam facing problems with orientations for latest version? plz help me?
How to do orientations in iphone and ipad for ios 6? previous versions showing shouldrotateinterfaceorientation but latest version not showing ?
iam facing problems with orientations for latest version? plz help me?
Try this method. In iOS 6 we started using masks.
- (BOOL) shouldAutorotate
{
return YES;
}
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscapeRight | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown;
}
You can choose the rotations that you want from what I placed in here and remove the masks that you don't want. Good Luck.