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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:53:56+00:00 2026-05-28T00:53:56+00:00

Is there a way to open a new screen after the NStimer is on

  • 0

Is there a way to open a new screen after the NStimer is on 0?

e.x:

-(void) randomMainVoid {

   if (mainInt <= 0)
    {
        [randomMain invalidate];

        //after counting a code to open a new file (new .h/.m/.xib file)

    } else {

    //something

    }
}
  • 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-28T00:53:57+00:00Added an answer on May 28, 2026 at 12:53 am

    If you’re using the standard view controller/nib model, it’s pretty easy to load a new screen. How you present it, however, will really depend on your application. But, as an example, if you wanted to present a new modal screen after the timer finished, and you had a view controller class named AfterTimerViewController with an associated nib file, you would present it as such:

    -(void) randomMainVoid
    {
      if (mainInt <= 0) {
        [randomMain invalidate];
    
        // This assumes this method is defined in the current view
        // controller. If not, replace self with the appropriate reference
        AfterTimerViewController* controller = [[AfterTimerViewController alloc] initWithNibName:@"AfterTimerViewController" bundle:nil];
        // Uncomment and use for pushing onto a navigation controller's stack
        [[self navigationController] pushViewController:controller animated:YES];
    
        // Uncomment and use if you want the new view controller to replace the root of your
        // current navigation controller stack
        //[[self navigationController] setViewControllers:[NSArray arrayWithObject:controller] animated:YES];
    
        // Uncomment and use for presenting the new controller as a modal view controller
        //[self presentModalViewController:controller animated:YES];
    
        [controller release]; // change this if you're using ARC or taking ownership of this controller accordingly
      } else {
        //something
      }
    }
    

    For more information on these methods, see the UIViewController documentation and the View Controller Programming Guide for iOS.

    edit: I added sample code for a number of different common transitions. The best thing to do is to read the guides about View Controllers and their interactions so that you can use the pattern that best fits the design of your application. In general, tho, the sample code above shows how to react to events, create a view controller programmatically and present it.

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

Sidebar

Related Questions

Is there a way for a open file dialog to use the My Computer
Is there a way to configure nautilus to open a file into an existing
Is there any way to copy all lines from open file to clipboard in
Is there a way to open an asp:HyperLink.NavigateUrl in a new tab and not
Is there any way to open a new activity as a popup window on
Is there a way to open My Computer Properties from C# Windows Application? For
Is there a way to open/close (i.e. start-up/shut-down) a winform application via ASP.NET? I'm
Is there any way to open a broadcast bluetooth socket, take a listen and
Is there a way to open the Finder's Get Info window within my app
Is there a way to automatically open up the Windows Performance Options dialog using

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.