I have a UITabBar switches places when the iphone changes orientation and that works fine, but I want the controls within the view of the first tab to stay static regardless of the position of the phone. I feel like I'm missing something obvious?

Edit: Basically, the controls are always landscape but the tab bar must switch orientations. It this possible?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

For the view in which you don't want the controls to readjust, disable the autoresizing: [self.view setAutoresizesSubviews:NO];. This will prevent all controls (subviews) from responding to interface orientation changes and yet the tab will still respond. You might also have to set the autoresizingMask of the current view: [self.view setAutoresizingMask:UIViewAutoresizingNone];

Addition : try the following for all controls you don't want to rotate

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
   switch (toInterfaceOrientation) {
      case UIInterfaceOrientationLandscapeLeft:
         label.transform = CGAffineTransformMakeRotation(M_PI_2); // 90 degress
         break;
      case UIInterfaceOrientationLandscapeRight:
         label.transform = CGAffineTransformMakeRotation(M_PI + M_PI_2); // 270 degrees
         break;
      case UIInterfaceOrientationPortraitUpsideDown:
         label.transform = CGAffineTransformMakeRotation(M_PI); // 180 degrees
         break;
      default:
         label.transform = CGAffineTransformMakeRotation(0.0);
         break;
   }
}
link|improve this answer
I'm adding this in the viewDidLoad of the view that I don't wat to switch but the controls are still moving...should i do it somewhere else? – irco May 1 '11 at 20:29
Weird. Does your app start up in landscape mode? – Wolfgang Schreurs May 1 '11 at 20:33
it actually does if I have the "Supported interface orientation" key in the info.plist to be landscape, but even if i remove it and the app starts portrait. The view controls move – irco May 1 '11 at 20:38
I've added a bit of code, this should be what you want. – Wolfgang Schreurs May 1 '11 at 20:51
ugh man so close...when I rotate it with the home button to the right there is background image that shifts to the left and leaves a blank gap. I'm actually replacing label.transform with self.view.transform – irco May 1 '11 at 21:07
show 4 more comments
feedback

example of Landscape

[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeRight];

OR

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationLandscape);
}
link|improve this answer
I understand that, and that;s what im doing so that the tabbar at the bottom reacts to the switching of orientation, but I want to keep the controls within the view from moving but not the tabbar – irco Apr 27 '11 at 23:40
setOrientation is private API and shouldn't be used, also stopped working in I think it was IOS 4. – Grady Player May 6 '11 at 21:14
feedback

Unfortunately, it's not exactly straightforward. You can't have the UITabBarController respond to interface changes while not having the content view controller respond.

But there is a way to do it. In the content view controller's willAnimateRotationToInterfaceOrientation:duration:, you can apply an opposite rotation (using the transform property) to the subviews that you don't want rotated. For example, UIInterfaceOrientationLandscapeLeft is a 90° clockwise rotation, so if you apply a 90° counterclockwise rotation to the view's transform it will seem to not have rotated.

If you want, you could include the entire interface of the content view controller in a UIView so you just have to counterrotate (and possibly resize) that one view. I don't know whether it would work to apply the counterrotation on the view controller's main view, the system may override your setting for that particular view.

link|improve this answer
this is my first time doing anything like this...I'm trying to rotate it like this CGAffineTransform transform = self.view.transform; transform = CGAffineTransformRotate(transform, -(M_PI / 2.0)); self.view.transform = transform; But there is bkgnd image that moves down and to the right..im not sure why – irco May 1 '11 at 20:48
@irco: I see you posted pictures in another comment above. It looks like you aren't taking into account the fact that the area for the content view in portrait is probably something like 320x416, while in landscape it's probably (after counteracting the rotation) something like 268x480. Also, BTW, you can use the constant M_PI_2 instead of M_PI / 2.0, although the compiler will probably generate identical code modulo possible inaccuracy in the last digit. – Anomie May 1 '11 at 23:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.