I would like my app's rotation to be fixed as landscape...

I've done some research, but most posts are about detecting change,

and I couldn't find any about forcing one.

Could anyone help me?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Try this

In plist change the Supported interface orientations to Lansdscape

OR

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight); // home button on right
}

All the best

link|improve this answer
thanx! it worked! – CosmicRabbitMediaInc Mar 10 '11 at 4:50
feedback

You can change the info.plist of your project so that you app always shows Landscape initially.And then you can make your view controller's to support only landscape orientation.

hope this also helps

Only support for landscape Interface orientation

Launching application in landscape orientation for IPad

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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