iPhone rotation woes

Posted by skooter500 on Stack Overflow See other posts from Stack Overflow or by skooter500
Published on 2010-04-20T14:42:01Z Indexed on 2010/04/20 14:43 UTC
Read the original article Hit count: 162

Filed under:
|
|

I have been spending many frustrating hours trying to get rotations working on the iPhone version of Tunepal.

Firstly, I have a tab bar controller, with a navigation controller controlling each of the views. I actually only want one of my views to be able to rotate and that is the TuneDisplay. I have a subclassed the UITabBarController and overridden theshouldAutorotateToInterfaceOrientation:

  • (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { if (self.selectedViewController != nil) { return [self.selectedViewController shouldAutorotateToInterfaceOrientation:interfaceOrientation]; } else { return (interfaceOrientation == UIInterfaceOrientationPortrait); } }

In each of the view controllers for each of the tabs I have overridden the method and returned YES for each orientation I want to support. All well and good and everything works as it should. If I try and do a rotation on a tab that doesn’t support the rotation, nothing happens.

The problem occurs if I move from a tab thats rotated to a tab that isnt supposed to support that rotation. The new tab is displayed rotated too! Screenshots for all this are included here:

http://tunepal.wordpress.com/2010/04/20/rotation-woes/

Is there any way I can make it rotate back to portrait on tapping the tab?

I have tried the unsupported setOrientation trick, but firstly it doesnt work correctly and secondly I received a warning from Apple for including it in my last build.

If (as I suspect) there is no way to limit this behavior:

How do I make the microphone image scale when I rotate the device? How do I make the buttons and the progress bar expand to fit the witdh of the toolbar? Also, one of the tabs that rotates ok has a table, with a search bar. The first time I rotate to the right or to the left, I get a black bar to the right of the search bar. If I subsequently rotate back and rotate again, the bar disappears! I have enabled the struts and springs things on the search bar in the interface builder and it looks like it should behave correctly. Any ideas about how to fix this?

Ideas, feedback much appreciated

Bryan

© Stack Overflow or respective owner

Related posts about iphone

Related posts about rotation