Objective-C String(yyyy-mm-dd)到NSDate [英] Objective-C String(yyyy-mm-dd) to NSDate

查看:154
本文介绍了Objective-C String(yyyy-mm-dd)到NSDate的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的应用程式是JSON代码,涉及字串类型的日期。 (如2011-10-01)。
我想知道如何将它转换成NSDate?
它需要以不同的时间格式显示,例如2011年10月1日。

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。此代码不起作用:

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];


推荐答案

由于Tug在这个主题的博文


Objective-C和iOS SDK提供了一个类来帮助格式化日期
(封送和解组),这个类是,.apple.com / library / mac /#documentation / Cocoa / Reference / Foundation / Classes / NSDateFormatter_Class / Reference / Reference.html> NSDateFormatter 。 No
惊喜,NSDateFormatter使用 Unicode日期格式
模式。

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];

这里的publicationDate是NSString。

where publicationDate in this case is an NSString.

这篇关于Objective-C String(yyyy-mm-dd)到NSDate的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆