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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T19:35:08+00:00 2026-05-15T19:35:08+00:00

I have 2 arrays, 1 in the viewDidLoad method and 1 in the add

  • 0

I have 2 arrays, 1 in the viewDidLoad method and 1 in the add method(adds an object to favorites)

NSUserDefaults *myDefault = [NSUserDefaults standardUserDefaults];
    NSArray *prefs = [myDefault arrayForKey:@"addedPrefs"]; 
    userAdded = [[NSMutableArray alloc] initWithArray:prefs];

Instruments is showing leaks from these prefs NSArrays. (only one shown above, other is exactly the same in ViewDidLoad) When I try to release them the app crashes and they are defined locally, so I cannot release them in the dealloc method.

Is it possible to assign my userAdded NSMutable array directly to the arrayForKey? Or will it cause a mismatch?

How can this leak be stopped?

  • 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-15T19:35:09+00:00Added an answer on May 15, 2026 at 7:35 pm

    The documentation doesn’t specify if initWithArray: sends the objects in the old array (prefs) an additional retain when added to the new array (userAdded). It should, because the items are being added to the new array. Maybe when the old array (prefs) is deallocated, the retain count on the elements in userAdded drops too low, the objects are deallocated also, and the app crashes. To check this, I asked the contents of the first array for their retain count before and after calling initWithArray:.

    NSUserDefaults *myDefault = [NSUserDefaults standardUserDefaults];
    NSArray *prefs = [myDefault arrayForKey:@"addedPrefs"]; 
    NSUInteger i, count = [prefs count];
    for (i = 0; i < count; i++) {
        NSObject * obj = [prefs objectAtIndex:i];
        NSLog(@"Object: %@, Retain count: %d.", obj, [obj retainCount]);
    }
    userAdded = [[NSMutableArray alloc] initWithArray:prefs];
    for (i = 0; i < count; i++) {
        NSObject * obj = [prefs objectAtIndex:i];
        NSLog(@"Object: %@, Retain count: %d.", obj, [obj retainCount]);
    }
    

    The objects report an increased retain count, so the prefs array can be released without affecting the new array. But running this code still leaks an NSArray.

    So the problem must lie with the prefs array. Since the NSUserDelfaults method arrayForKey: produces the prefs array, yet the words “alloc”, “new”, or “copy” are not found in this method’s name, the calling method does not own the prefs array. Most likely, the prefs array was added to an autorelease pool. To test this idea, I surrounded the above test code with calls to NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; and [pool drain]. Running this code does not leak an array.

    So I think the prefs array is being added to an autorelease pool that doesn’t get drained. The simplest way to eliminate this leak would be to make an autorelease pool before creating the prefs array, and draining that pool when done with the prefs array.

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

Sidebar

Related Questions

No related questions found

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.