Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Should I be retaining the responseData that I am returning

// METHOD
-(NSData *)dataFromTurbine:(NSString *)pathToURL {

    NSURL *url = [[NSURL alloc] initWithString:pathToURL];
    NSURLRequest *request = [[NSURLRequest alloc] initWithURL:url];
    NSHTTPURLResponse *response = nil;
    NSError *error = nil;
    NSData *responseData = [NSURLConnection sendSynchronousRequest:request 
                                                 returningResponse:&response 
                                                             error:&error];

    [request release];
    [url release];
    return responseData;
}

.

// CALLED
NSData *newData = dataFromTurbine(kTurbineDataPath);
[doSomething newData];
share|improve this question
2  
If you're using Xcode, use Build & Analyze, this will help you a lot with this stuff. – bddckr Mar 25 '10 at 13:57
Thank you, I will do that. – fuzzygoat Mar 25 '10 at 14:20

2 Answers

up vote 6 down vote accepted

Since the method name doesn't start with init, new or copy, dataFromTurbine should return an autoreleased instance of NSData. (Which is already true now for responseData)

The calling method then has ownership, and should retain if needed.

share|improve this answer
Much appreciated Rengers, I was getting mixed up, thanks again. – fuzzygoat Mar 25 '10 at 14:21

In a word, no.

The NSData object you get from NSURLConnection is autoreleased, so you should retain/release it only if you need to keep it. Otherwise, it will be automatically released for you at the next pass of the run loop.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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