vote up 2 vote down star
2

Which is right? This:

NSArray* foo = [[NSArray alloc] initWithObjects:@"a", @"b", nil];
[bar performSelectorInBackground:@selector(baz:) withObject:foo];

- (void)baz:(NSArray*)foo {
    ...
    [foo release];
}

Or:

NSArray* foo = [[[NSArray alloc] initWithObjects:@"a", @"b", nil] autorelease];
[bar performSelectorInBackground:@selector(baz:) withObject:foo];

- (void)baz:(NSArray*)foo {
    NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
    ...
    [pool release];
}

I know the first one works, but Clang complains about it, so I wonder if there's a better pattern to use.

I would "just try out" the 2nd one, but with autoreleasing, who knows whether the absence of EXC_BAD_ACCESS means that you're doing it right or that you just got lucky...

flag

2 Answers

vote up 5 vote down check

First is wrong.

performSelectorInBackground:withObject: retains both bar and foo until task is performed. Thus, you should autorelease foo when you create it and let performSelectorInBackground:withObject take care of the rest. See documentation

Latter is correct because you autorelease foo when you create it. Autorelease pool that you create inside baz has nothing do with correctness of foo's memory management. That autorelease pool is needed for autoreleased objects inside pool allocation and release in baz, it doesn't touch foo's retain count at all.

link|flag
Oh, it's right there in the documentation! Silly me. :) – lawrence May 16 at 21:13
I should clarify: you MUST create and drain an autorelease pool inside -baz:, unless you KNOW that nothing will be sent an -autorelease method inside there. The best rule of thumb is to assume that will happen and create/drain an autorelease pool, as in example 2. But use [pool drain], not [pool release]. – Jim Dovey May 16 at 22:24
Exactly as Jim Dovey said: you usually need to create autorelease pool just like you do for main function (see Thread Programming Guide). It's just important to understand that this pool has nothing to do with autorelease of foo. – tequilatango May 17 at 7:43
vote up 1 vote down

IMHO this would be better:

NSArray* foo = [[NSArray alloc] initWithObjects:@"a", @"b", nil];
[bar performSelectorInBackground:@selector(baz:) withObject:foo];
[foo release];
link|flag

Your Answer

Get an OpenID
or

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