Greets,
Apps were dying on retrieval of objects with NSDate* fields. Tracked down
the problem to the last line of NSDate-SQLitePersistence.m's
+(id)objectWithSqlColumnRepresentation:(NSString*)columnData
which was:
return [dateFormatter dateFromString:self];
but self isn't actually a string, at least in my proggy... the fix seems to be:
return [dateFormatter dateFromString:columnData];
Regards,
Pat Deegan
Original issue reported on code.google.com by goo...@psychogenic.com on 5 Nov 2008 at 9:32
Original issue reported on code.google.com by
goo...@psychogenic.com
on 5 Nov 2008 at 9:32