vote up 0 vote down star

I'm getting an instruments Memory Leak with this iPhone 3.0 SDK code.

I'm using the JSON from http://code.google.com/p/json-framework/

Here is my code:

// .h
@property (nontatomic,retain) NSMutableArray *tweets;


// .m
import" JSON.h"
@synthesize tweets;
...
    tweets = [[NSMutableArray alloc] init];

    NSURL *url = [NSURL URLWithString:@"http://www.someurl.com"];
    NSString *jsonString = [NSString stringWithContentsOfURL:url];
    NSArray *results = [jsonString JSONValue];
    NSArray *data = [results valueForKey:@"stories"];

    for(NSDictionary *tweet in data) {
    	TweetmemeData *tweetmeme = [[TweetmemeData alloc] initWithTweet:tweet];
    	[tweets addObject:tweetmeme];
    	[self debugDump:tweetmeme];
    	[tweetmeme release];
    }
    [results release];

    return tweets;

If possible, please explain more about this form of memory management. I'm very familiar with retain/release but obviously am having trouble implementing it :)

Thanks!

flag
Notice that I am NOT releasing the NSArray *data ... if I do I get a lockup. Also, if I RETAIN results it seems to help... thanks in advance – Phil Wright Aug 6 at 14:27
According to convention, since [jsonString JSONValue] does not contain the words "alloc", "new", or "copy", it presumably returns an autoreleased pointer, which means you shouldn't have to release the "results" array. The same goes for the "data" NSArray. – Dave DeLong Aug 6 at 14:45

1 Answer

vote up 0 vote down

It's worth noting that many leaks that will come up in the simulator don't happen at all on the hardware. Are you using the simulator or testing it on the phone?

link|flag
Hi! Thanks for the info. I am using the Simulator.. will check the device. Notice that I am NOT releasing the NSArray *data ... if I do I get a lockup. Also, if I RETAIN results it seems to help... thanks in advance – Phil Wright Aug 6 at 14:26

Your Answer

Get an OpenID
or

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