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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T06:23:51+00:00 2026-05-25T06:23:51+00:00

I have an instance variable called users defined as NSMutableArray . I use that

  • 0

I have an instance variable called users defined as NSMutableArray.

I use that variable for fill an UITableView.

In viewDidLoad I initialize it with:

users = [[MySingleton sharedClass] getUsers];

This is the getUsers method:

- (NSMutableArray *)getUsers
{
    ...   
    NSMutableArray *listArray = [[NSMutableArray alloc] init];

    for (NSDictionary *dict in jsonObject) {
        ...
        [listArray addObject:element];
        ...
    }

    return listArray;
}

In this way all it works fine. The problem is when I set listArray as autoreleased object.

NSMutableArray *listArray = [[[NSMutableArray alloc] init] autorelease];

or

return [listArray autorelease];

Sometimes the app crash with EXC_BAD_ACCESS.

Why this? Isn’t correct set autorelease listArray?

  • 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-25T06:23:52+00:00Added an answer on May 25, 2026 at 6:23 am

    Assuming that users in users = [[MySingleton sharedClass] getUsers] is an instance variable, you’re forgetting to take ownership of the array. When you want to claim ownership of an object (such as this array), you need to send it retain to tell it you want it to stick around. And when you’re finished with it, you need to send it release to tell it so. Setters handle this for you, so it’s generally a good idea to use setters outside of init and dealloc methods. So assuming you have a setter for users, you could do one of these:

    self.users = [[MySingleton sharedClass] getUsers];
    /* OR */
    users = [[[MySingleton sharedClass] getUsers] retain];
    

    The first way is usually better, but you don’t want to call setters in init… or dealloc methods because they might have side effects that are undesirable there. Since you’re not in one of those methods here, you can just use the first.

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

Sidebar

Related Questions

I have an instance variable called @chosen_athlete in my controller. I use this variable
I have a custom class that has as an instance variable of a coordinate:
If you have a Property that gets and sets to an instance variable then
I need to mock a GrailsControllerClass interface. Instance should have a static variable defined.
I have a global variable that is an instance of my custom class. How
I have a class called Note , which includes an instance variable called time_spent
Let's say we have a class foo which has a private instance variable bar
I have a page-scoped component, which has an instance variable List with data, which
Let's say I have a class Foo with some primitive instance variables. I initialize
I have a variable called $tags , which just references from a database field.

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.