Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4583630
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T21:14:29+00:00 2026-05-21T21:14:29+00:00

I have a UITabBar switches places when the iphone changes orientation and that works

  • 0

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?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T21:14:29+00:00Added an answer on May 21, 2026 at 9:14 pm

    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;
       }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I have a UIViewController that has a UITabBar in the view. I want
I have a UITabBar. In the first tab, I have a UINavigationController. Within that
I have added a tab bar (UITabBar) in my iPhone application. I want to
I have a UITabBar and a UIMenuControl but the problem is that when I
I have a UITabBar in the detail view of my navigation based application. I
I have an UITabBar based iPhone app with 4 different UIWebViews under every tab.
I have UITabBar in view which have 5 tabs. I am using didSelectItem delegate
I have an existing iphone project with a UITabBar. Now I need styled text
Has anyone successfully hidden a UITabbar when rotating the device? I have one view
Sorry for the newbie question. I have a UITabBar in my main window view

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.