vote up 1 vote down star

I have the following method which is spawned by a call for a new thread (using NSThread):

- (void) updateFMLs {   
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
    NSArray *temp = [[NSArray alloc] initWithArray:someArrayFromAnotherProcess];

    [self performSelectorOnMainThread:@selector(doneLoading:) withObject:temp waitUntilDone:NO];
    [pool release];
}

My doneLoading: method looks like this:

- (void) doneLoading:(NSArray *)obj {
    myArray = [[NSArray alloc] initWithArray:obj copyItems:NO];
}

The contents of myArray become invalid. How can I preserve the contents of myArray so I can use them later in my app?

P.S. myArray is defined in the class header file.

flag

What do you mean by "become invalid". Are they being deallocated? – Tom Dalling Aug 4 at 2:57
1  
BTW, you're leaking the "temp" array. You alloc an array (+1 retain count), but you never release it. – Dave DeLong Aug 4 at 3:02
yes they seem to become deallocated as i progress through doneLoading...even though nothing in doneLoading,except for the line shown above, alters myArray in any way – zPesk Aug 4 at 3:05
Retagged with thread-related tags, and removed less-related iPhone tags. – Quinn Taylor Aug 4 at 6:15

3 Answers

vote up 0 vote down

An alternative to the options above would be to declare myArray as an atomic property in the header

@property (atomic,retain) NSArray *myArray;

Then in updateFMLs you should be able to simply call the setter from the secondary thread. Obviously this only works if you are willing to pay the performance penalty for an atomic property.

- (void) updateFMLs {
    NSAutoreleasePool *pool - [[NSAutoreleasePool alloc] init];
    NSArray *temp = [[NSArray alloc] initWithArray:someArrayFromAnotherProcess];
    [self setMyArray:temp];
    [temp release];
    [pool drain];
}
link|flag
vote up 0 vote down

If your background thread does some work and needs to 'pass' an NSArray to your main thread, then all doneLoading needs to do is:

-(void)doneLoading:(NSArray *)obj
{
    [myArray release]; // release the previous array and its objects
    myArray = [obj retain];
    // now use myArray, refresh tables, etc.
}

There's (likely) no need to make another copy of the array, and that might be the underlying issue. You should also call [temp release] after your performSelector call, since arguments to that are retained already.

If the contents of myArray are becoming valid somehow, then they are being doubly released somewhere. myArray will retain any objects that are added to it. You mentioned that myArray itself is becoming invalid, so try rewriting your background thread and your doneLoading method with this pattern.

Finally you should use [pool drain] in place of [pool release].

link|flag
What happens if the other thread goes to use myArray in between your release message and assignment of the new array? – Peter Hosey Aug 4 at 4:05
Presumably (based on the question) he is using myArray on the main thread only. It appears that his background thread sets up a new model and then needs to pass it to the main thread for processing. His question is more about memory management than thread synchronization. To solve the issue you raise, he would need to add @synchronized(self){} blocks. Plus, updateFMLs quits immediately after doneLoading is to be called. – Jason Aug 4 at 10:18
vote up 0 vote down

The code you posted looks fine, apart from the memory leak in updateFMLs. You're probably over-releasing the objects somewhere else. I'm guessing it would be wherever someArrayFromAnotherProcess is made.

link|flag
When I debug updateFMLs - temp is filled with the correct data. When it gets passed to doneLoading and then becomes invalid is what is messing me up.... – zPesk Aug 4 at 3:15
1  
They might be deallocated when the pool is released in updateFMLs, which will happen before doneLoading is called. – Tom Dalling Aug 4 at 3:18
That's what I was thinking. How would I fix this??? – zPesk Aug 4 at 3:22
If that's the case, then you have to find where you are releasing it incorrectly, and remove the release. It doesn't appear to be in the code you posted. – Tom Dalling Aug 4 at 3:30
1  
Tom Dalling: But the objects in the array are retained by the array, which he is leaking (it's not autoreleased). If he fixes the leak, then that will become a problem, but it isn't the problem in the code shown. – Peter Hosey Aug 4 at 4:07
show 3 more comments

Your Answer

Get an OpenID
or

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