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 6086913
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T11:48:37+00:00 2026-05-23T11:48:37+00:00

I have an UIImageView as a background behind my controls, the problem comes when

  • 0

I have an UIImageView as a background behind my controls, the problem comes when rotating the device. I’d like to use a different image depending on the orientation.

So what would be the best way to handle that?
Adding and removing each UIImageView for landscape and portrait?
Having both on the view and hide/show the appropriate one?
Or maybe there is some class or UIObject for handling that?

TIA

  • 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-23T11:48:38+00:00Added an answer on May 23, 2026 at 11:48 am

    You can get funky with it and have both background images overlaid, one with alpha = 1.0 and the other with alpha = 0.0. Then, when you rotation, use an animation to transition the alphas to 0.0 and 1.0, respectively to get a fade-in fade-out effect. If you choose this approach, I recommend putting the animation code in -viewWillAppear: For example, something like this:

    [UIView beginAnimations:nil context:NULL]; {
        [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
        [UIView setAnimationDuration:1.0];
            [UIView setAnimationDelegate:self];
            if (toOrientation == UIInterfaceOrientationLandscape) {
                    landscapeView.alpha = 1.0;
                    portraitView.alpha = 0.0;
            }
            else {
                    landscapeView.alpha = 0.0;
                    portraitView.alpha = 1.0;
            }
    } [UIView commitAnimations];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got an UIImageView as a background image for my application, which, like a
I have a UIImageView whose image I want to change depending on user input.
I have a UIImageView which has a png image sequence loaded into it. My
I have a UIImageView showing a image that is larger than it's frame. It's
I have a UIImageView that starts off with an image (loading.png) specified in IB.
I have a view with a UIScrollView, UIImageView for a background, and a UITextView.
I have a somewhat unusual problem. In my app, I am shadowing a UIImageView
The problem: On top of existing UIView, load a background image From the card
I have an UIView and I set a background image in this way: self.view.backgroundColor
I have a TTTableViewController with a background image in which I insert items of

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.