When I run my iPhone app with Instruments Leaks and parse a bunch of NSDates using NSDateFormatter my memory goes up about 1mb and stays even though these NSDates should be dealloc'd after the parsing (I just discard them if they aren't new).

I thought the malloc (in my heaviest stack trace below) could become part of the NSDate but I also thought it could be memory that only used during some intermediate step in parsing. Does anyone know which one it is or how to find out?

Also, is there a way to put a breakpoint on NSDate dealloc to see if that memory is really being reclaimed?

Here's what my date formatter looks like for parsing these dates:

df = [[NSDateFormatter alloc] init]; 
[df setDateFormat:@"EEE, d MMM yyyy H:m:s z"];

Here's the Heaviest Stack trace when the memory bumps up and stays there:

   0 libSystem.B.dylib  208.80 Kb     malloc
   1 libicucore.A.dylib  868.19 Kb     icu::ZoneMeta::getSingleCountry(icu::UnicodeString const&, icu::UnicodeString&)
   2 libicucore.A.dylib  868.66 Kb     icu::ZoneMeta::getSingleCountry(icu::UnicodeString const&, icu::UnicodeString&)
   3 libicucore.A.dylib  868.67 Kb     icu::ZoneMeta::getSingleCountry(icu::UnicodeString const&, icu::UnicodeString&)
   4 libicucore.A.dylib  868.67 Kb     icu::DateFormatSymbols::initZoneStringFormat()
   5 libicucore.A.dylib  868.67 Kb     icu::DateFormatSymbols::getZoneStringFormat() const
   6 libicucore.A.dylib  868.67 Kb     icu::SimpleDateFormat::subParse(icu::UnicodeString const&, int&, unsigned short, int, signed char, signed char, signed char*, icu::Calendar&) const
   7 libicucore.A.dylib  868.67 Kb     icu::SimpleDateFormat::parse(icu::UnicodeString const&, icu::Calendar&, icu::ParsePosition&) const
   8 libicucore.A.dylib  868.67 Kb     icu::DateFormat::parse(icu::UnicodeString const&, icu::ParsePosition&) const
   9 libicucore.A.dylib  868.67 Kb     udat_parse
  10 CoreFoundation  868.67 Kb     CFDateFormatterGetAbsoluteTimeFromString
  11 CoreFoundation  868.67 Kb     CFDateFormatterCreateDateFromString
  12 Foundation  868.67 Kb     -[NSDateFormatter getObjectValue:forString:range:error:]
  13 Foundation  868.75 Kb     -[NSDateFormatter getObjectValue:forString:errorDescription:]
  14 Foundation  868.75 Kb     -[NSDateFormatter dateFromString:]

Thanks!

link|improve this question

61% accept rate
feedback

3 Answers

I concur. 868 Kb will be permanently allocated on iPhone OS 2.2.1 or 3.1.2 (more to come) after a single invocation to "dateFromString" when the z option is used.

A complete article with source code and log file can be read at http://thegothicparty.com/dev/article/nsdateformatter-memory-leak/

link|improve this answer
feedback

There may be a problem with NSDateFormatter parsing date strings with time zones because when I changed the formatter pattern to remove the timezone portion the problem disappeared.

I changed it from this:

[df setDateFormat:@"EEE, d MMM yyyy H:m:s z"];

To this:

[df setDateFormat:@"EEE, d MMM yyyy H:m:s"];

But now the problem is the dates don't get the right timezone so I'll have to have to determine the timezone myself.

link|improve this answer
There's a thread about that on the Cocoa-dev mailing list: lists.apple.com/archives/Cocoa-dev/2009/Apr/msg01913.html – IlDan Jul 13 '09 at 9:29
feedback

What do you mean by discarding the NSDateFormatters? Do you release them when you are done with them?

df = [[NSDateFormatter alloc] init]; // allocates memory

Your code allocates memory but you need to call

[df release];

when you are done with them. When you allocate (or copy) object its reference count is incremented by one. When you release object (you send release message to it) the reference count goes down by one. When the reference count reaches 0 the object is deallocated.

If you don't send it release message it will stay in memory and you have memory leak.

link|improve this answer
I was refering to the NSDates when I said I discard them. As you can see from my stacktrace above I'm using [NSDateFormatter dateFromString] to create NSDate objects which ends in the malloc call which shows up in the Heaviest stack trace from Instruments (BTW I have "Created & Still Living" selected for the Heaviest stack trace I posted). – Cal Jul 13 '09 at 2:20
There should not be a problem then, dateFromString will return autoreleased object. If you are creating many autoreleased NSDates they will hang around until next even loop where they will be cleaned. This is because autoreleased objects end up in pool which is cleaned at the end of even processing pool, if you're creating lots of dates this may be causing your memory usage to spike up. – stefanB Jul 13 '09 at 2:58
feedback

Your Answer

 
or
required, but never shown

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