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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:49:35+00:00 2026-05-25T00:49:35+00:00

Hopefully I can explain this well. Assume the following: @interface ClassA : NSObject {

  • 0

Hopefully I can explain this well.
Assume the following:

@interface ClassA : NSObject {
   NSMutableArray firstArray;
   NSArray secondArray;
}

#import "ClassA"
@interface ClassB : NSObject {
   ClassA classAobject;
}

Then in some other part of the program ‘Psuedo-code’ accessing dictionary keys like:

NSMutableArray* sample = [[NSMutableArray alloc] init];
for (keys in Data)
{
    ClassA* aObj = [[ClassA alloc] initWith: objectForKey:@"KeyHere" andWith:@"Key2Here"];

    ClassB* bObj = [[ClassB alloc] init];
    [bObj setClassAObj: aObj];

    [sample addObject: bObj];
}
Singleton* single = [Singleton single];
[single setArray: sample];

My question is with the ClassA and ClassB objects created inside the loop and the array to store them outside of the loop. Am I leaking memory here, by not releasing them? If I do release them, how can I do so in a way that I wont lose the reference to them in the singleton to which I am storing the ‘sample’ array?

If it matters, the Singleton array to which it is being stored is allocated and initialized in the “init” method of the class.

  • 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-25T00:49:36+00:00Added an answer on May 25, 2026 at 12:49 am

    Adding objects to an array retains the objects. So you need to release them after you add them (if not autoreleased). Similarly, you need to make sure that the @properties for the instance variable array (in Singleton) is set to retain so that the sample array is retained when set in the singleton. Then you need to release sample as well.

    Also, your instance variables need to be pointers:

    @interface ClassA : NSObject {
       NSMutableArray *firstArray;
       NSArray *secondArray;
    }
    
    #import "ClassA"
    @interface ClassB : NSObject {
       ClassA *classAobject;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Sorry for the unhelpful title, but hopefully I can explain this well enough. Lets
Hopefully I can explain this well enough, but please let me know if more
Hopefully I can explain this well and hopefully I'm thinking the right way :)
This is hard to explain but hopefully I can articulate my problem well enough.
Hopefully I can explain this to where it make sense, but I'm trying to
Hopefully I can explain this clearly enough. I have a table that displays some
Hopefully I can explain this without overcomplicating the issue, so please bear with me.
Hey everyone. Hopefully I can explain this correctly. I have some URL's which I
Ok, so that title probably doesn't explain my question well. Hopefully this makes sense.
Hopefully I can explain this correctly. I have a table of line orders (each

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.