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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T06:16:37+00:00 2026-05-31T06:16:37+00:00

I have created NSUserDefaults object, it will be updated with the new value whenever

  • 0

I have created NSUserDefaults object, it will be updated with the new value whenever an even will occur.
What I want is (as per my application requirement) that object should be cleared every 7 days.
Like if 1st time that NSUserDefaults are updated today so exact after 7 days, a method should work and clear the NSUserDefaults.
So that, new values would be assigned from then on for the next 7 days.

Is it possible in objective-c?

  • 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-31T06:16:39+00:00Added an answer on May 31, 2026 at 6:16 am

    What you can do is store an NSDate object. Then every time the application is launched (or more often) check if the time difference between then and now is 7 days.

    const NSString *kFirstLaunchDateKey = @"firstLaunchDate";
    NSDate *firstLaunchDate = [[NSUserDefaults standardUserDefaults] objectForKey:kFirstLaunchDateKey];
    
    //  If this is the first time the app has been launched we record right now as the first time the app was launched.
    if (!firstLaunchDate) {
        [[NSUserDefaults standardUserDefaults] setObject:[NSDate date] forKey:kFirstLaunchDateKey];
        return;
    }
    
    NSTimeInterval *diff = abs([firstLaunchDate timeIntervalSinceNow]);
    if (diff > 60 * 60 * 24 * 7) {
    //      Seven days have passed since the app was first launched. 
    //      Display the rate button.
    }
    

    If it is call

    - (void)removePersistentDomainForName:(NSString *)domainName
    

    With your application’s bundle identifier as the parameter.

    From Apple’s documentation:

    domainName
    The domain whose keys and values you want. This value should be equal to your application’s bundle identifier.

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

Sidebar

Related Questions

I have created two dictionaries in the user defaults of my application to represent
Have created a new property list, and deleted the original .plist (same filename). Deleted
have created REST service using servicestack and in post request I have return object
I'm trying to implement in app purchases in a free application. I have created
I have created a user defined type to contain some data that I will
I have created my first asp.net UserControl that I will use in several places
I have created a small daemon (basically a console application that hides the console
I have created a Windows service that will run an exe file periodically to
I have created an application in which I have used base64 encoding and save
Have created a c++ implementation of the Hough transform for detecting lines in images.

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.