I am manually rotating a few views and subviews depending on orientation using this method:

CGAffineTransform landscapeTransform = CGAffineTransformMakeRotation(0);
landscapeTransform = CGAffineTransformTranslate( landscapeTransform, 0.0, 0.0 );
[self.navigationController.view setTransform:landscapeTransform];
CGRect theFrame = self.view.bounds;
self.navigationController.view.frame= CGRectMake(0, 0, 320, 480);

Now this works for rotating from landscape to portrait but if I try and rotate to landscape the frame CGRect doesn't make any logical sense (it looks like its something like (200,-50, width, height). I also have to hard set the frame for portrait, if I get the frame for self.view.frame or bounds or anything else I check, it changes each time I rotate.

Is there any better way to set the frame thats more logical and not hard coded?

link|improve this question

maybe this will be helpfull: stackoverflow.com/questions/2953351/… – Guntis Treulands May 20 at 21:20
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.