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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T08:23:20+00:00 2026-06-07T08:23:20+00:00

When launching an iOS application, the screen jumps from the Default.png into the interface.

  • 0

When launching an iOS application, the screen jumps from the Default.png into the interface. For a current project, I’d like to fade in from that Default.png into the app’s interface. Is there a good way to do this?

  • 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-06-07T08:23:21+00:00Added an answer on June 7, 2026 at 8:23 am

    I took a bit of rooster117 and runmad’s answers, and this is what I came up with.

    Add a UIImageView to the first UIViewController’s properties:

    @interface DDViewController : UIViewController {
       ...
        UIImageView *coverImageView;
    }
    
    ...
    
    @property (nonatomic, retain) UIImageView *coverImageView;
    

    Then, for the “home screen” of the iPad app, I call the following:

    - (void)viewDidLoad
    {
        [super viewDidLoad];
    
        ...
    
        coverImageView = [[UIImageView alloc] init];
    }
    
    -(void)viewWillAppear:(BOOL)animated {
        UIImage *defaultImage;   
        if (UIDeviceOrientationIsLandscape([UIDevice currentDevice].orientation)) {
            NSLog(@"Landscape!");
            defaultImage = [UIImage imageNamed:@"Default-Landscape.png"];
        } else {
            NSLog(@"Portrait!");
            defaultImage = [UIImage imageNamed:@"Default-Portrait.png"];
        }
    
        coverImageView = [[UIImageView alloc] initWithImage:defaultImage];
        [self.view addSubview:coverImageView];
    
    }
    
    -(void)viewDidAppear:(BOOL)animated {
        //Remove the coverview with an animation
        [UIView animateWithDuration:1.0f animations:^(void) {
            [self.coverImageView setAlpha:0.0];
        } completion:^(BOOL finished){
            [coverImageView removeFromSuperview];
        }];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

After launching an application using the Process class I'd like to make that window
Apple has explained in Launching the App Store from an iPhone application how one
I am launching many threads simultaneously, each one writing / reading data into/from a
Launching an android project with google api's from eclipse invokes the device chooser. In
While launching the application in my iPhone, I need to download the data from
I have a simple script for programmatically launching an iOS project through XCode: on
I'm trying to launch google maps from my iPhone application. The launching part works
A have a iOS-project that I send to my iPad. But when I'm trying
GPS is not launching at first run after clicking OK of Would like to
I'm launching a form from another form. I want the parent form to be

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.