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

I'm a newbie when it comes to objective C, and am currently experiencing a memory leak with the following code snippet. The memory leak occurs with the 'responseObj' allocation. Whenever I try to release it similar to responseData, I get a crash.

-(void) connectionDidFinishLoading:(NSURLConnection *)connection
{
    NSString* responseStr = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
    NSMutableArray* responseObj = [responseStr objectFromJSONString];
    [delegate loadGameDetails:[responseObj objectForKey:@"result"]];
    [responseStr release];

    [responseData release]; responseData = nil; 
}

I also tried to autorelease as below, but I also get a crash:

[delegate loadGameDetails:[[responseObj objectForKey:@"result"] autorelease]];

What's the proper way for me to release this block of memory?

share|improve this question

5 Answers

The problem is not in your allocation. Your are sending objectForKey: to a NSMutableArray which is actually a NSDictionary/NSMutableDictionary method. Double check what type of object objectFromJSONString really returns.

share|improve this answer
Good spot, I was looking for leaks and didn't notice that! – jrturton Dec 17 '11 at 7:19
I just notice you were releasing responseData, but I don't see where or how it was allocated? – gschandler Dec 17 '11 at 7:44

Nothing in that code is leaking. You have a possible over-release of responseData but I can't tell since the declaration and setup of it is not in scope. If it is an ivar you would typically set it to nil via the accessor (which would release it there) than directly as you have done here.

If there is a leak it is in your loadGameDetails method. What makes you think you have a memory leak? Have you run this through instruments, or used the static analyser?

share|improve this answer
Edit the question to include it, don't put code in comments as it is very hard to read! – jrturton Dec 17 '11 at 7:10

Where exactly is the responseData that you are releasing because you don't show any initialization of it in your code above

share|improve this answer

Looks to me like you didn't alloc/init responseObj.

I also found this other post that you might find helpful:

NSMutableArray memory management

Hope it helps!

share|improve this answer

I read somewhere that the object that is returned from

objectFromJSONString

is autoreleased. But when I check for leaks in Instruments, it is showing many leaks in the line where I use

objectFromJSONString

On trying to release or autorelease it, I'm getting crash.

Can you tell me why is it happening?

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.