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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T01:45:11+00:00 2026-06-16T01:45:11+00:00

I want to build a fairly simple app with just 1 screen. As a

  • 0

I want to build a fairly simple app with just 1 screen. As a result, I would like two views within the same view controller.

View1 - appear for 5 seconds
View2 - appear during gameplay
View1 - appear for 5 seconds
View2 - appear during gameplay
And so on. 

Though I don’t know how to make this happen, I am sure this design pattern is valid.

I searched documentation but can’t find definite answer.

I know apps which does this, but how, I don’t know.

Is it viewcontroller.view = View1 or View2? If so, how would I make this switch with some nice animation?

I know of animations but not in this kind of case. Please help…

  • 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-16T01:45:12+00:00Added an answer on June 16, 2026 at 1:45 am

    Add the two views as subviews of your viewController’s view:

    [viewController.view addSubview:view1];
    [viewController.view addSubview:view2];
    

    Then use an animation block:

    // the following code will replace view1 with view2 after a 5 second delay
    
    // this ensures view2 is behind view1
    [viewController.view bringSubviewToFront:view2];
    [viewController.view bringSubviewToFront:view1];
    
    // get view2 ready for the animation
    view2.alpha = 0;
    view2.hidden = NO;
    
    // delay for 5 seconds before executing animation
    [UIView animateWithDuration:duration delay:5 options:(UIViewAnimationOptionCurveLinear | UIViewAnimationOptionAllowUserInteraction) animations:^{
    
        //fade out
        view1.alpha = 0;
    
        // fade in
        view2.alpha = 1;
    
    } completion:^(BOOL finished) {
    
        // hide it after animation completes
        view1.hidden = YES;
    
        // bring view2 to front (even though view1 is not visible, it is still above view2)
        [viewController.view bringSubviewToFront:view2];
    }];
    

    to replace view1 with view2. And so on.

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

Sidebar

Related Questions

I am trying to build an fairly simple iPad app that requires me to
I have a fairly simple haskell project set up, where I just want to
I want to build a fairly simple Android application. The basic data model of
I am trying to build a fairly simple website and want to find out
i want build a photography app with effects . e.g. old images with brown
I want build a sketch pad app on iPhone, I assume that this type
i want to build a screen for user to get his marks on competitions,
I want to build a console-like output using JTextPane. Therefore I am using a
I have a fairly simple app that takes the input from a user and
I have a fairly simple problem for someone familiar with js. I quite like

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.