I changed the properties in info.plist to support orientation in landscape thereby the app opens in landscape mode as well. The problem which i face is like when the app loads in landscape mode the view is properly aligned. There is a view on the right side of the split view is not aligned properly. But when i load that in the portrait mode and then into landscape there are no issue. Can you tell me if there are additional properties or some work around for this issue.

link|improve this question

80% accept rate
post a screenshot – jer Feb 9 '11 at 4:35
1  
are u using split view controller in a tab bar controller? – Madhup Feb 9 '11 at 4:54
feedback

2 Answers

as you are using splitview controller you should not worry about orientation.

just see in your view .nib file there is one authosizing feature set that properly u will remove this problem.

This link may help you if you dont know about autosizing.

Regards,

Shyam Parmar

link|improve this answer
feedback
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Overriden to allow any orientation.
    return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationLandscapeRight));
}

add this code...hope it will work...

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.