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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T10:30:52+00:00 2026-05-24T10:30:52+00:00

From other threads here I have gotten a modal view login screen to show

  • 0

From other threads here I have gotten a modal view “login screen” to show whenever my app starts for the first time. What I want now is to have the login screen show whenever the app is brought back into the foreground (i.e. its running in the background and is brought up again) so the user can log back in.

Here’s my code from the applicationDidFinishLaunchingWithOptions

LoginViewController *loginViewController = [[LoginViewController alloc] initWithNibName:@"LoginView" bundle:nil];


    if (lockScreenOnOff) 
    {
        [self.tabBarController presentModalViewController:loginViewController animated:YES];
        [self.window makeKeyAndVisible];
    }

where the modal login view is shown if a switch (lockScreenOnOff) is on. How can I accomplish 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-05-24T10:30:53+00:00Added an answer on May 24, 2026 at 10:30 am

    Implement applicationDidEnterBackground: and applicationDidBecomeActive: in your application delegate. (UIApplicationDelegate class reference)

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
        // Create all view controllers
    
        [self lockApplicationAnimated:NO]; // Lock on launching
        [self.window makeKeyAndVisible];
    
        return YES;
    }
    
    - (void)lockApplicationAnimated:(BOOL)animated
    {
        [self.tabBarController presentModalViewController:self.loginViewController
                                                 animated:animated];
    }
    
    - (void)applicationDidEnterBackground:(UIApplication *)application
    {
        // Lock the application
        // Also, save all user data because the application might terminate soon
        [self lockApplicationAnimated:NO];
    }
    
    - (void)applicationDidBecomeActive:(UIApplication *)application
    {
        // Hooray, the user returned!
        // Screen should be locked because the applicationDidEnterBackground
    }
    

    Additionally you can also use NSTimer to invalidate a session after a certain amount of time.

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

Sidebar

Related Questions

Using the .Net Framework 1.1, what options are available for monitoring threads from other
I've read through the two other threads that extract the dll from the application
I would love to get some tips from other people that have had this
I have checked several other threads but I am still having a problem. I
I am new at threads here is the question, I have 3 threads one
I have gotten some reports from users of crashes when try use my application
Does your software handle newline characters from other systems? Linux/BSD linefeed ^J 10 x0A
I seem to be getting breakpoints from other programmers when checking out code... Where
The XML String I am getting from other application is converting & to &
I want to do this: if (user from other website, like google, or input

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.