vote up 3 vote down star
4

I have an app where I would like to support device rotation in certain views but other don't particularly make sense in Landscape mode, so as I swapping the views out I would like to force the rotation to be set to portrait.

There is an undocumented property setter on UIDevice that does the trick but obviously generates a compiler warning and could disappear with a future revision of the SDK.

[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationPortrait];

Are there any documented ways to force the orientation?

Update: I thought I would provide an example as I am not looking for shouldAutorotateToInterfaceOrientation as I have already implemented that.

I want my app to support landscape and portrait in View 1 but only portrait in View 2. I have already implemented shouldAutorotateToInterfaceOrientation for all views but if the user is in landscape mode in View 1 and then switches to View 2, I want to force the phone to rotate back to Portrait.

flag

1  
I believe that the documented way of setting the orientation is to rotate it to the left or the right by 90 degrees :) – Cody Brocious Oct 8 '08 at 8:08
haha, very nice... – Dave Verwer Oct 8 '08 at 8:10
I've filed a bug on this, suggesting Apple either expose the above API, or honor the YES, NO being returned from the shouldRotate method, when a view first loads, not just when the phone rotates. – rustyshelf Oct 10 '08 at 0:05

11 Answers

vote up 3 vote down check

I have this exact same problem. I think we should probably file a bug with Apple asking them to expose the API?

link|flag
vote up 3 vote down

To rotate a view, you just need to set the status bar orientation and transform the view's coordinates appropriately. Here is some example code.

Setting the status bar is easy:

[UIApplication sharedApplication].statusBarOrientation = UIInterfaceOrientationLandscapeRight;

Updating the view's transform is a little bit tricker, because you need to take the view's center into account and provide a matrix which rotates around that point.

link|flag
vote up 1 vote down

If you are using UIViewControllers, there is this method:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

Return NO for the view controllers containing the views you don't want to rotate.

More info here

link|flag
That stops rotation, what I am looking for is to force a rotation back to portrait if the user is in landscape. I have added an example above to say what I mean better. – Dave Verwer Oct 8 '08 at 18:09
vote up 1 vote down

This is what I use. (You get some compile warnings but it works in both the Simulator and the iPhone)

[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight];
[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeRight];
link|flag
vote up 1 vote down

If you want to force it to rotate from portrait to landscape here is the code. Just note that you need adjust the center of your view. I noticed that mine didn't place the view in the right place. Otherwise, it worked perfectly. Thanks for the tip.

if(UIInterfaceOrientationIsLandscape(self.interfaceOrientation)){

    	[UIView beginAnimations:@"View Flip" context:nil];
    	[UIView setAnimationDuration:0.5f];
    	[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];

    	self.view.transform = CGAffineTransformIdentity;
    	self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(90));
    	self.view.bounds = CGRectMake(0.0f, 0.0f, 480.0f, 320.0f);
    	self.view.center = CGPointMake(160.0f, 240.0f);

    	[UIView commitAnimations];
}
link|flag
vote up 0 vote down

I don't think this is possible to do at run-time, though you could of course just apply a 90 degree transform to your UI.

link|flag
It is possible with the code I originally posted, you just never know when that might stop working ;) – Dave Verwer Oct 8 '08 at 20:22
vote up 0 vote down

[UIApplication sharedApplication].statusBarOrientation = UIInterfaceOrientationLandscapeRight;

This doesn't work anymore as of 0ctober 21, 2008, iPhone OS 2.1. setOrientation is nolonger a UIApplication method.

link|flag
vote up 0 vote down

From what I can tell, the setOrientation: method doesn't work (or perhaps works no longer). Here's what I'm doing to do this:

first, put this define at the top of your file, right under your #imports:

#define degreesToRadian(x) (M_PI * (x) / 180.0)

then, in the viewWillAppear: method

[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO]; 	
if (self.interfaceOrientation == UIInterfaceOrientationPortrait) {	
	self.view.transform = CGAffineTransformIdentity;
	self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(90));
	self.view.bounds = CGRectMake(0.0, 0.0, 480, 320);
}

if you want that to be animated, then you can wrap the whole thing in an animation block, like so:

[UIView beginAnimations:@"View Flip" context:nil];
[UIView setAnimationDuration:1.25];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];

[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO]; 	
if (self.interfaceOrientation == UIInterfaceOrientationPortrait) {	
	self.view.transform = CGAffineTransformIdentity;
	self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(90));
	self.view.bounds = CGRectMake(0.0, 0.0, 480, 320);
}
[UIView commitAnimations];

Then, in your portrait mode controller, you can do the reverse - check to see if its currently in landscape, and if so, rotate it back to Portrait.

link|flag
vote up 0 vote down

Hi,

I am faced with same problem and I tried you solution Bdebeez. But the results are wierd. Here is my code sample..

[UIView beginAnimations:@"View Flip" context:nil];
[UIView setAnimationDuration:1.25];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];

if(self.interfaceOrientation == UIInterfaceOrientationLandscapeLeft || self.interfaceOrientation == UIInterfaceOrientationLandscapeRight)
{
		self.view.transform = CGAffineTransformIdentity;
		self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(90));
		self.view.frame = CGRectMake(0.0, 0.0, 320,480 );
	mainSettingsView.frame = CGRectMake(0.0, 0.0, 320,480 );


	NSLog(NSStringFromCGRect(mainSettingsView.frame));
	NSLog(NSStringFromCGRect(self.view.frame));
}

[UIView commitAnimations];

And here is the console listing...

2009-02-27 13:52:34.038 NavControllerOrientationTest[610:20b] {{-2.09815e-05, -1.39876e-05}, {320, 480}}
2009-02-27 13:52:34.039 NavControllerOrientationTest[610:20b] {{-2.09815e-05, -1.39876e-05}, {320, 480}}

For me those two NSLog outputs are unexplained. Could anyone throw some light on why the x and y coordinates are haywire? As you may have guessed by now, the view is not visible.

Thanks and regards,

Sreejit

link|flag
vote up 0 vote down

The solution of Bdebeez rotates only the view itself, but does not roatate a navigationbar. How can I rotate the bar with the view?

link|flag
vote up 0 vote down

This is no longer an issue on the later iPhone 3.1.2 SDK. It now appears to honor the requested orientation of the view being pushed back onto the stack. That likely means that you would need to detect older iPhone OS versions and only apply the setOrientation when it is prior to the latest release.

It is not clear if Apple's static analysis will understand that you are working around the older SDK limitations. I personally have been told by Apple to remove the method call on my next update so I am not yet sure if having a hack for older devices will get through the approval process.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.