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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T22:38:53+00:00 2026-05-31T22:38:53+00:00

In my TaggingScreen.m init function, I do – tags = [myTagMgr getMyTags]; In my

  • 0

In my TaggingScreen.m init function, I do –

tags = [myTagMgr getMyTags];

In my getMyTags method, I do the following –

NSMutableDictionary *myTags = [NSMutableDictionary new];
....
return myTags;

I get a memory leak for myTags in this method. Where should I release the memory? “tags” is a property which is used throughout the TaggingScreen class. So if I do an autorelease, I get an exception saying “message sent to deallocated instance” when I try to access tags in other methods of the class.

EDIT:

- (NSMutableDictionary *)getMyTags
{

NSMutableDictionary *myTags=[NSMutableDictionary new];
NSFetchRequest *fetchRequest = [[[NSFetchRequest alloc] init]autorelease];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Tag" 
                                inManagedObjectContext:localObjectContext];
[fetchRequest setEntity:entity];

NSError *error = nil;
NSArray *fetchedArrayObjects = [localObjectContext executeFetchRequest:fetchRequest error:&error];

if (fetchedArrayObjects ==nil) {
    return nil;
}   
if ([fetchedArrayObjects count]==0) {
    return nil;
}   

Tag *aMessage; 
for (int i=0; i<[fetchedArrayObjects count];i++) 
{
    aMessage= (Tag *)[fetchedArrayObjects objectAtIndex:(NSUInteger)i];

    [myTags setValue:[aMessage isSet] forKey:[aMessage tagName]];
    }
return myTags;
}   
  • 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-31T22:38:55+00:00Added an answer on May 31, 2026 at 10:38 pm

    Vignesh and Vin’s solutions are correct, but based on what you’ve said, the best thing to do would be to change tags into a strong property:

    @property (nonatomic, strong) NSMutableDictionary *tags; 
    

    Unless you’re in a situation where a retain loop might arise (say, a delegate object), you should use strong so your properties aren’t deallocated from under you.

    In addition, unless you’re using ARC, you’ll want to autorelease myTags:

    return [myTags autorelease];
    

    Oh, and if you’re not using ARC, you’ll want to make sure to release tags in dealloc.

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

Sidebar

Related Questions

I am working on a project in which I have to create a tagging

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.