I have a navigation controller inside a tab bar controller. When In landscape mode, the back button animation pushes down, rather than to the right.
What do I need to do to make it push right like it does in portrait mode? Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I have seen this happen before if one of your UIViewController’s does not have landscape support.
Double check your
shouldAutorotateToInterfaceOrientationin both of your UIViewControllers and make sure they both return YES for both portrait and landscape.