up vote 3 down vote favorite
1
share [g+] share [fb]

The date you get back from twitter is in this format Fri Aug 07 12:40:04 +0000 2009. I am able to assign the value to a NSDate without issue. However, when I attempt to use NSDateFormatter, I get a nil returned to me. What am I missing?

	NSDate *createdAt = [messageData objectForKey:@"created_at"];
	NSDateFormatter *format = [[NSDateFormatter alloc] init];
	[format setDateFormat:@"M/d/yy HH:mm"];

	NSString *dateString = [format stringFromDate:createdAt];


	label.text = dateString;
link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

If the object associated with the @"created_at" key is a valid NSDate object, this code should work.

However, I'm guessing that it is actually an NSString. If so, it will produce the behavior you're describing.

If I'm right, the code snippet above is assigning an NSString object to an NSDate reference. NSDictionary returns untyped 'id' objects, so the compiler won't give you a type mismatch warning.

You'll have to use NSDateFormatter to parse the string into an NSDate (see dateFromString:).

link|improve this answer
feedback

i had the same question, and i could not resolve it with the current above answers. so here is what worked for me:

NSDateFormatter *df = [[[NSDateFormatter alloc] init] autorelease];
    //Wed Dec 01 17:08:03 +0000 2010
    [df setDateFormat:@"eee, dd MMM yyyy HH:mm:ss ZZZZ"];
    NSDate *date = [df dateFromString:[[tweets objectAtIndex: storyIndex] objectForKey: TWITTER_CREATED_AT_JSON_KEY]];
    [df setDateFormat:@"eee MMM dd yyyy"];
    NSString *dateStr = [df stringFromDate:date];

where tweets is an NSMutableArray filled with NSDictionary objects, storyIndex being the row int value (in the tableview), and TWITTER_CREATED_AT_JSON_KEY being a constant NSString with value created_at. use the dateStr wherever you wish to display the date

link|improve this answer
1  
Thanks @binnyb. Twitter have changed the format now to "Wed, 28 Dec 2011 16:48:59 +0000", so the first format should be: [df setDateFormat:@"eee, dd MMM yyyy HH:mm:ss ZZZZ"]. – Mota Dec 29 '11 at 19:16
thanks i made the change – binnyb Jan 3 at 14:12
feedback

First off, what are you using stringFromDate: for? That's if you already have an NSDate and want to make a string representing it.

Moreover, when you do use the date formatter, you're giving it a format string that doesn't match the date string you're trying to interpret.

Change the format string to match your date strings, and use dateFromString: instead of stringFromDate: (with the attendant changes to your variable declarations), and it should work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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