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

  • Home
  • SEARCH
  • 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 8853731
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T13:43:20+00:00 2026-06-14T13:43:20+00:00

When I use the code mentioned below, I get the desired splash screen with

  • 0

When I use the code mentioned below, I get the desired splash screen with fade out on the iPhone simulator, but the picture seems to be zoomed with factor 2: I only get the upper left quarter of my initial picture (= launch image), zoomed to full screen. The launch image itself is shown in correct size at startup, before the splash screen kicks in.

Code is entered in didFinishLaunchingWithOptions in AppDelegate.

// Splash screen
    UIImageView*imageView=[[UIImageView alloc]initWithImage:[UIImage imageNamed:@"IMG_1357.png"]];
    [[navigationController view] addSubview:imageView];
    [[navigationController view] bringSubviewToFront:imageView];

    // as usual
    [self.window makeKeyAndVisible];

    //now fade out splash image
    [UIView transitionWithView:self.window duration:4.0f options:UIViewAnimationOptionTransitionNone animations:^(void){imageView.alpha=0.0f;} completion:^(BOOL finished){[imageView removeFromSuperview];}];

Furthermore the splash screen doesn’t seem to appear on the device (iPhone 4S (Retina) with iOS 6.0), only on the simulator: when run on iPhone, it only displays the launch image.

What could be the cause and solution to both issues?
Thanks in advance!

  • 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-14T13:43:21+00:00Added an answer on June 14, 2026 at 1:43 pm
    1. Setup frame for imageView, otherwise it has the same sizes as an image
    2. Setup correct contentMode
    3. Try to use self.window, instead of [navigationController view]

    Example:

    UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"IMG_1357.png"]];
    imageView.contentMode = UIViewContentModeScaleAspectFill;
    imageView.frame = self.window.bounds;
    [self.window addSubview:imageView];
    [imageView release];
    
    [self.window makeKeyAndVisible];
    
    //now fade out splash image
    [UIView transitionWithView:self.window
                      duration:4.0f
                       options:UIViewAnimationOptionTransitionNone
                    animations:^(void) {
                        imageView.alpha = 0.0f;
                    }
                    completion:^(BOOL finished ){
                        [imageView removeFromSuperview];
                    }];
    

    To add a 1 second pause before the fade out:

    int64_t delayInSeconds = 1.0;
    dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC);
    dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
        [UIView transitionWithView:self.window
                          duration:4.0f
                           options:UIViewAnimationOptionTransitionNone
                        animations:^(void) {
                            imageView.alpha=0.0f;
                        }
                        completion:^(BOOL finished ){
                            [imageView removeFromSuperview];
                        }];
    });
    

    or

    [self performSelector:@selector(_hideSplash:) withObject:imageView afterDelay:1.0];
    
    - (void) _hideSplash:(UIView *)view
    {
        [UIView transitionWithView:self.window
                          duration:4.0f
                           options:UIViewAnimationOptionTransitionNone
                        animations:^(void) {
                            view.alpha=0.0f;
                        }
                        completion:^(BOOL finished ){
                            [view removeFromSuperview];
                        }];    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I tried using the example mentioned in below url. but got confused how they
My requirement is to generate PDF file using iText, I use below code to
Many ARIA demonstration websites use code such as: <label for=name id=label-name>Your Name</label> <input id=name
I want to use code beside files for my views in my ASP.NET MVC
Why cant i use code nuggets to set a control property??For example a validationgroup
I'm attempting to use code I've found that uses Win32. However, I'm getting this
how does one use code to do this: produce 15 random numbers [EDIT: from
I have a couple of libraries that use code similar to the following one.
When using XML serialization in C#, I use code like this: public MyObject LoadData()
Assuming sr is an IEnumerable<string> , I want to use code like this to

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.