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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T06:41:04+00:00 2026-06-02T06:41:04+00:00

I am looking for some reference about the animation such that when you click

  • 0

I am looking for some reference about the animation such that when you click on the application, it will bring you the first screen but slowly.

Does anybody know what it is please advice me on this issue. Thanks

edit
I just wanna make a nice transition after all.Whenever I click on the application, the first screen just come up. I would like to make it nicer just like the first screen is brought slowly slowly and displayed on the scree. Hope it makes sense now.

  • 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-02T06:41:06+00:00Added an answer on June 2, 2026 at 6:41 am

    I assume you mean fading out the splash screen after the application starts? You can add something like this to applicationDidFinishLaunching to display the splash art full-screen immediately on boot, and then fade it out

    UIView *topView = self.window.rootViewController.view;
    bootSplashView = [[UIImageView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
    bootSplashView.image = [UIImage imageNamed:@"iPhoneDefault.png"];
    [topView addSubview:bootSplashView];
    [self performSelector:@selector(fadeBootScreen) withObject:nil afterDelay:0];
    

    And then in a separate method:

    - (void)fadeBootScreen
    {
        [UIView animateWithDuration:0.4 delay:0.0 options:UIViewAnimationCurveEaseIn animations:^{
            bootSplashView.alpha = 0.0;
        } completion:^(BOOL finished) {
            [bootSplashView removeFromSuperview];
            bootSplashView = nil;
        }];
    }
    

    Make sure to add ‘bootSplashView’ as an class variable. If your app can start in different orientation (relevant on the iPad), specialize for those cases by loading a different image.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm recently started to learn Twisted framework and now looking for some cheat sheets/reference
Looking for good project methodologies.Anyone got some good reference links..want to share.
Looking for some reference material where i can get some OO designing problems and
I'm looking to build a library that needs to be very careful about memory
I have an odd question that I have always thought about, but could never
Looking at the release notes of OS 10.7, there's some stuff about using Automatic
I'm looking to learn about embedded programming (in C mainly, but I hope to
I might be missing something obvious but is there a reference somewhere about what
I have done some searches looking for information about how to do logging with
I'm looking for some good references for learning how to model 2d physics in

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.