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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T19:32:36+00:00 2026-05-20T19:32:36+00:00

i am getting a list of items from sqlite database and place them in

  • 0

i am getting a list of items from sqlite database and place them in an array.

i need to get this array first time my app runs.

for this i am saving this array into NSuserdafaults.

my code is like this

if ([[NSUserDefaults standardUserDefaults] arrayForKey:@"categories"]) {

        [[NSUserDefaults standardUserDefaults] setObject:appdelegate.categoriesList forKey:@"categories"];
        NSLog(@"categorylist>>>>>> %@",appdelegate.categoriesList);
    }
    categoriesArray = [[NSMutableArray alloc]init];
    categoriesArray = [[[NSUserDefaults standardUserDefaults] arrayForKey:@"categories"] mutableCopy];

then it not entered into if condition.

and if i try with not equal like this.

if (![[NSUserDefaults standardUserDefaults] arrayForKey:@"categories"]) {

        [[NSUserDefaults standardUserDefaults] setObject:appdelegate.categoriesList forKey:@"categories"];
        NSLog(@"categorylist>>>>>> %@",appdelegate.categoriesList);
    }
    categoriesArray = [[NSMutableArray alloc]init];
    categoriesArray = [[[NSUserDefaults standardUserDefaults] arrayForKey:@"categories"] mutableCopy];

then enter for every build and run.

But i need this for first build and run i mean at installing time.

can any one please help me.

Thank u in advance.

(let me add comment if any one did n’t understand my question)

  • 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-20T19:32:37+00:00Added an answer on May 20, 2026 at 7:32 pm
    categoriesArray = [[NSMutableArray alloc]init];
    categoriesArray = [[[NSUserDefaults standardUserDefaults] arrayForKey:@"categories"] mutableCopy];
    

    The lines above create a leak: you first allocate one array, and then you immediately assign a different array to the same pointer that was keeping track of the array that you allocated. After the second line, you have no way to release the first array.

    As for the main question, I suspect that the check

    if (![[NSUserDefaults standardUserDefaults] arrayForKey:@"categories"]) {
    

    succeeds every time because there’s never a value written for the key @”categories”. I see that the lines inside that conditional block try to write a value, but appdelegate.categoriesList may well be nil.

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

Sidebar

Related Questions

I am getting from database list of items ordered by descending date. I use
I need to display the list of names which I am getting from the
How can all checked items from a list can be fetched? I need to
I'm having a problem with getting and dropping the first value from list in
I have a SQLite database and I'm getting a ListView from the database through
I'm getting a list of review items from a web service that dictates what
I am getting the data from sqlite database and trying to display it in
I have a little problem with getting all data from SQLite database and showing
I have list view with custom array adapter. I want to get items click
I have a method which is list my items from a server. Therefore, this

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.