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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T17:58:13+00:00 2026-05-16T17:58:13+00:00

I am trying to save drafts using NSUserDefaults but I am not sure if

  • 0

I am trying to save drafts using NSUserDefaults but I am not sure if it is the right place to save data not user’s preferences in.

My application allows user to choose 1 or 2 images to upload and share. Users can save draft and come back to upload later. My current approach is to save the chosen UIImage to /Library directory and save the file path to NSUserDefaults.

The data structure is NSUserDefaults -> Draft NSDictionary -> key – NSArray. I have many drafts (just like email drafts). The Draft Dictionary contains a saved date string as a key and string file paths in NSArray. The saving process doesn’t have any problems currently. But because in NSUserDefaults doc, they say:

The defaults system allows an
application to customize its behavior
to match a user’s preferences.to match a user’s preferences.

So, I don’t know if my approach is good or not, any possible future problems with it?

Do you suggest me any simple solution that can do this well without having to code much. I know there is CoreData but I don’t know much about it. Is it easy to learn and implement?

I don’t know if this can affect some memory problem or not, but I expect that a user may save drafts less than 100.

  • 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-16T17:58:14+00:00Added an answer on May 16, 2026 at 5:58 pm

    You don’t want to save any actual data to NSUserDefaults, however, it acceptable to save the previous application state in the defaults such that the app can resume where it left off.

    Your data structure seems overly complex. You can just save an array of file paths directly to the user defaults.

    NSUserDefaults *defaults=[NSUserDefaults standardUserDefaults];
    NSArray *draftPaths=[NSArray arrayWithObjects:filePath1, filePath2,nil];
    [defaults setObject:draftPaths forKey:@"DraftPaths_Key"];
    // to retrieve
    NSArray *previousDraftPaths=[defaults objectForKey:@"DraftPaths_Key"];
    

    You don’t want to save the files into the cache folders because the system can delete caches if space gets tight. Instead, save them to custom folder in the /Library directory. You can get the path to the library with:

    NSArray *libraryPaths=NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
    NSString *libPath=[libraryPaths objectAtIndex:0];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

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.