i Will like to know how to auto rotate iphone after launch.

my launch image is in portraits but the app itself are in landscape.

after launch the orientation are still in portraits instead of auto rotate to landscape.

this is my info.plist

enter image description here

in my root view controller

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationLandscapeRight));

}
link|improve this question

is only your launch screen in potrait and rest in landscape? – Sharanya Jan 30 at 6:49
feedback

2 Answers

up vote 4 down vote accepted

enter image description here

as shown in the image, set the marked value for landscape mode..

link|improve this answer
But my launch image is in portrait mode – Desmond Jan 30 at 6:37
2  
ok then, after launch image is done run this step, [[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft]; – vishy Jan 30 at 6:53
feedback

In iphone Launch images are always in portrait mode, You can make launch image such that it looks like it is in landscape but actually it will be in portrait mode

While ipad has option for launch image in both mode landscape and portrait

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.