up vote 0 down vote favorite
share [g+] share [fb]

I have a memory leak problem, I'm saving an array into a file using:

[NSKeyedArchiver archiveRootObject:myArray toFile:MyFile];

the objects included into the array have the following methods:

- (id)initWithCoder:(NSCoder *)coder
{

[super init];

parameter1 = [[coder decodeObject] retain];
parameter2 = [[coder decodeObject] retain];
parameter3 = [[coder decodeObject] retain];

return self;
 }

- (void)encodeWithCoder:(NSCoder *)coder
{
[coder encodeObject:parameter1];
[coder encodeObject:parameter2];
[coder encodeObject:parameter3];
}

To unarchive the objects I'm using:

myUnarchivedArray = [NSKeyedUnarchiver unarchiveObjectWithFile:myFile];

The application suddenly crashes because the available memory is not enough to continue.

I'm unable to deallocate myUnarchivedArray and the Intruments tool is telling me that the unarchiver is causing the memory leak.

I haven't search too much, I just found the cause of the memory leak, but I was hopping to find someone that has been passed the same problem and has a tip to solve it.:)

Thank you!! Anna

link|improve this question

33% accept rate
How big are these objects? – mahboudz Nov 6 '09 at 22:54
32 bytes aprox, but the amount of them inside the array is variable. – Alejandra Gonzalez Nov 6 '09 at 22:59
Are the objects you're encoding/decoding custom types? If so, review their encode/decode methods. – nall Nov 6 '09 at 22:59
nop, the object only have NSStrings as parameters – Alejandra Gonzalez Nov 6 '09 at 23:02
1  
When it crashes, can you look at what the types are in the debugger? Or set a breakpoint in the encode method and check what exactly you're archiving? See if it's what you expect. – nall Nov 6 '09 at 23:07
show 1 more comment
feedback

1 Answer

You're retaining your objects in initWithCoder although the documentation states:

NSKeyedUnarchiver’s implementation, however, returns an autoreleased object, so its life is the same as the current autorelease pool instead of the keyed unarchiver.

link|improve this answer
-1 The life of the object is the same as the current autorelease pool, unless that object is retained. This is standard Objective-C memory management. – Dave DeLong Nov 7 '09 at 16:58
What makes you think this retain is balanced by a release? – diciu Nov 7 '09 at 17:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.