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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T03:36:33+00:00 2026-05-27T03:36:33+00:00

I have an app that requires a user login to use it. I have

  • 0

I have an app that requires a user login to use it. I have a value of X number of minutes that if the app was inactive for that long, it will log the user out so when they start the app next, they would have to enter their login info again.

Is there an easy and efficient way to do this? I’m thinking I have to add an NSTimer to my AppDelegate and add some logic in the didFinishLaunchingWithOptions method. I have the minutes stored as an int in NSUserDefaults.

For example, if the app has not been used in 60 minutes, then log the user out (it won’t really log the user out then, but the next time the app is launched it will log the user out and show the login screen, etc).

Edit:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    NSDictionary *userContextDictionary = [dataSource fetchUserContext];
    NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
    [userDefaults setDouble:[[userContextDictionary valueForKey:@"autologout_idle_timeout"] doubleValue] forKey:@"timeoutLength"];  
    double timeDifference = ([[NSDate date] timeIntervalSince1970] - [userDefaults doubleForKey:@"Close Time"]) / 60;

    if (timeDifference > [userDefaults doubleForKey:@"timeoutLength"]) {
         NSLog(@"Timeout Hit");
     } else {
         NSLog(@"No Timeout");
     }

- (void)applicationDidEnterBackground:(UIApplication *)application
{    
    NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
    double currentTime = [[NSDate date] timeIntervalSince1970];
    [userDefaults setDouble:currentTime forKey:@"Close Time"];
}
  • 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-27T03:36:34+00:00Added an answer on May 27, 2026 at 3:36 am

    Simply store the time that the app is closed, and then check it when it becomes active. If the difference between the two is too high, require re-login. Otherwise continue the app where it left off.

    In your applicationDidEnterBackground method or similar:

    double currentTime = [[NSDate date] timeIntervalSince1970]];
    [NSUserDefaultsVar setDouble:currentDate forKey:@"Close Time"];
    

    And then in the applicationWillEnterForeground and didFinishLaunchingWithOptions (to cover opening from a closed state and opening from background):

    double timeDifference = ([[NSDate date] timeIntervalSince1970] - [NSUserDefaultsVar doubleForKey:@"Close Time"]) / 60;
    
    if (timeDifference > [NSUserDefaultsVar doubleForKey:@"Acceptable Difference"] ) {
          [self reLogin];
    } else {
          //continue 
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an app that requires user to register. I've got the app conected
Lets say you have a web app related Android app that requires the user
I currently have an app that requires connection to a server in multiple activities.
I have a very simple iPhone app that requires a random integer from 1-100.
I have a page which displays a form that a logged-in user can use
I have an app that requires me to take an action after some period
I am making an app that does not require a user account/login, and allows
I have a facebook app that requiers authorization, therefore I have to pass a
I have some classes in my app that don't require an ID to be
have an app that finds your GPS location successfully, but I need to be

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.