I have developed my project in portrait orientation, now I want to set my project orientation in landscape . I have set all xib file's orientation property as landscape and in .plist also I have set all the items of Supported interface orientations as landscape, but when I run my project one view still comes in portrait orientation... in this view i am showing pdf file.

Thanks in advance !!!

link|improve this question

65% accept rate
Try setting the frame of that element when the orientation changes – ThE uSeFuL Mar 4 '11 at 8:14
You mean that all the views should be changed to Landscape orientation provided whatever may be the orientation is. – SNR Mar 4 '11 at 8:15
feedback

2 Answers

up vote 5 down vote accepted

did you put the following method in you view controller

- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
    return YES;
}
link|improve this answer
Thanks a lot Kshitiz!!! actually this method was commented. – Archana Chaurasia Mar 4 '11 at 9:22
i thought may be you have forgotten to put that function, lol, so i answered that – Kshitiz Ghimire Mar 4 '11 at 9:32
feedback

if Landscape use this code

(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
    return (interfaceOrientation==UIInterfaceOrientationLandscapeLeft || interfaceOrientation==UIInterfaceOrientationLandscapeRight);
}

if Portrait use this code

(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
    return (interfaceOrientation==UIInterfaceOrientationPortrait || interfaceOrientation==UIInterfaceOrientationPortraitUpsideDown);
}
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.