Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Objective-C String(yyyy-mm-dd) to NSDate

My App is a JSON code which involves a date in string type. (Such as "2011-10-01"). I would like to know how I could conver it into NSDate? It needs to be displayed in a different time format such as "1 October, 2011".

ex. this code doesn't work:

   NSString *date1 = @"2010-11-12";
    NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
    [dateFormat setDateFormat:@"yyyy-MMMM-dd"];
    NSDate *date2 = [dateFormat dateFromString:date1];
    NSString *strdate = [dateFormat stringFromDate:date2];
like image 787
user973067 Avatar asked Jun 26 '26 21:06

user973067


2 Answers

As Tug writes in his blog post on the subject:

Objective-C and iOS SDK provide a class to help formatting date (marshaling and unmarshaling), this class is NSDateFormatter. No surprise, the NSDateFormatter uses the Unicode Date Format Patterns.

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
[dateFormatter setDateFormat:@"yyyy-MM-dd"];
NSDate *date = [dateFormatter dateFromString:publicationDate ];
[dateFormatter release];

where publicationDate in this case is an NSString.

like image 153
Deepesh Avatar answered Jun 29 '26 09:06

Deepesh


Use NSDateFormatter. The appropriate method is dateFromString:. Take a look at the documentation :)

like image 26
fzwo Avatar answered Jun 29 '26 11:06

fzwo



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!