sample code:

- (Foo*)createFoo {
    Foo *foo = [[Foo alloc] init];
    return foo;
}

- (void)someOtherMethod {
    Foo *foo;
    foo = [self createFoo]; //retain count 1
    [foo release]; //retain count = 0 => object gets released?

    //repeat
    foo = [self createFoo];
    [foo release];
}

Qeustion (maybe a stupid one): Do i have to autorelease in createFoo or can i release the returned object in someOtherMethod?

link|improve this question

71% accept rate
I suppose you are calling [self createFoo] and not [self Foo], then is ok to release it in someOtherMethod. Just keep in mind ARC let you get rid of almost all thess problems... – il Malvagio Dottor Prosciutto Oct 26 '11 at 15:19
1  
@ilMalvagioDottorProsciutto Whilst I agree on the ARC comment I think it is good to have a knowledge of how it should be done manually, besides ARC simply puts these calls in anyway, so knowing what it is doing is quite nice. – Simon Lee Oct 26 '11 at 15:32
@SimonLee exactly my thoughts – peko Oct 26 '11 at 15:37
feedback

2 Answers

up vote 0 down vote accepted

Your code in this instance should be autoreleasing your object as you are handing over ownership to the calling code, you no longer wish to be responsible for it within the method and so you should relinquish your retain on it.

Remember NARC - methods that begin with these keywords are assumed to NOT autorelease...

New, Alloc, Retain, Copy

If your method were named newFoo or copyFoo then your code above would be fine without autoreleasing.

link|improve this answer
so nothing will go wrong and if rename createFoo to newFoo im following apples code requirements? – peko Oct 26 '11 at 15:21
Yes that's fine, otherwise autorelease and then retain it in the calling code, and release when done. – Simon Lee Oct 26 '11 at 15:26
feedback

Cocoa memory management is actually quite easy because everybody sticks to a set of rules. You aren't following those rules, so you're going to run into trouble.

Read Basic Memory Management Rules. If you stick to following those rules, you should be fine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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