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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T19:42:39+00:00 2026-05-30T19:42:39+00:00

I have made a very simple custom object pictureData . Here is the .h

  • 0

I have made a very simple custom object pictureData.

Here is the .h file

#import <Foundation/Foundation.h>

@interface pictureData : NSObject {
    NSString    *fileName;
    NSString    *photographer;
    NSString    *title;
    NSString    *license;
}

@property (nonatomic, retain) NSString      *fileName;
@property (nonatomic, retain) NSString      *photographer;
@property (nonatomic, retain) NSString      *title;
@property (nonatomic, retain) NSString      *license;

+(pictureData*)picDataWith:(NSDictionary*)dictionary;

@end

The .m file

#import "pictureData.h"

@implementation pictureData

@synthesize fileName;
@synthesize photographer;
@synthesize title;
@synthesize license;

+ (pictureData*)picDataWith:(NSDictionary *)dictionary {

    pictureData *tmp = [[[pictureData alloc] init] autorelease];

    tmp.fileName = [dictionary objectForKey:@"fileName"];
    tmp.photographer = [dictionary objectForKey:@"photographer"];
    tmp.title = [dictionary objectForKey:@"title"];
    tmp.license = [dictionary objectForKey:@"license"];

    return tmp;
}

-(void)dealloc {
    [fileName release];
    [photographer release];
    [title release];
    [license release];
}

@end

I then set up these objects in an array, like so:

NSString *path = [[NSBundle mainBundle] pathForResource:@"pictureLicenses" ofType:@"plist"];

    NSArray *tmpDataSource = [NSArray arrayWithContentsOfFile:path];
    NSMutableArray *tmp = [[NSMutableArray alloc] init];
    self.dataSource = tmp;
    [tmp release];

    for (NSDictionary *dict in tmpDataSource) {
        pictureData *pic = [pictureData picDataWith:dict];
        NSLog(@"%@", pic.title);
        [self.dataSource addObject:pic];
    }

Everything works smashingly. I have a table view which loads the proper picture images, and information, no problem. Upon running Instruments for leaks, I see that my pictureData object is leaks with every allocation.

I would assume that with having my object autoreleased I would not have to worry about manually allocating and deallocating them.

Perhaps is my issue that I use autorelease, which the autoReleasePool keeps a retain count of +1 and then when I add a pictureData object to my array, that also retains it? Thank you all for your time!

edit: Don’t forget to call super! Thank you Sam!

  • 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-30T19:42:40+00:00Added an answer on May 30, 2026 at 7:42 pm

    Change dealloc to:

    -(void)dealloc {
        [fileName release];
        [photographer release];
        [title release];
        [license release];
        [super dealloc];
    }
    

    (call [super dealloc])

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

Sidebar

Related Questions

I have made a very simple AppleScript to close tabs in Safari. The problem
in my application I made a very simple binding. I have a NSMutableArray bound
I have made a very simple Pie Graph generator using Javascript & SVG graphics.
I have a very simple file upload PHP script. I am testing with a
I am a rather new C++ programmer. I have made a very simple game
i have made a very simple labview VI which has an activeX component in
I am puzzled by this: I have made a very simple example: MainWindow.xaml: <Window
I have made a deployment project for my very simple .Net 4.0 C# Winforms
I have a very simple openGL program in C++. I have made a Sphere
I just made a very simple website, but I have run into a problem.

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.