字符串格式的Nsdate不起作用

时间:2012-01-30 16:30:01

标签: iphone objective-c ios nsdate

我正在尝试将字符串日期转换为NSDate以对格式进行一些更改..但它总是返回nil!

这是我的代码:

NSDateFormatter *df = [[NSDateFormatter alloc] init];

//Mon Jan 30 17:40:12 +0000 2012
[df setDateFormat:@"ccc MMM dd HH:mm:ss Z yyyy"];
[df setTimeStyle:NSDateFormatterFullStyle];
[df setFormatterBehavior:NSDateFormatterBehavior10_4];
[df setLocale:[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"]];

NSDate *date1 = [df dateFromString:strData];

我也试过这种格式:

[df setDateFormat:@"EEE MMM dd HH:mm:ss z yyyy"];

我试过这张表:

http://www.deanoj.co.uk/ios-development/nsdateformatter-formatting-strings-reference/

我尝试过这些链接..还有很多其他链接:

Convert NSString to NSDate with string format "Sun, 08 Jan 2012 13:57:38 +0000"

NSDateFormatter dateFromString returns nil

How to format Facebook/Twitter dates (from the JSON feed) in Objective-C

有人能帮帮我吗?

提前致谢!

1 个答案:

答案 0 :(得分:2)

如果我把你的代码修改为:

[df setDateFormat:@"ccc MMM dd HH:mm:ss Z yyyy"];
// [df setTimeStyle:NSDateFormatterFullStyle];
// [df setFormatterBehavior:NSDateFormatterBehavior10_4];
[df setLocale:[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"]];

NSDate *date1 = [df dateFromString:@"Mon Jan 30 17:40:12 +0000 2012"];
NSLog( @"date is %@", date1);

我得到了:

2012-01-30 11:36:38.339 TestApp[32182:f803] date is 2012-01-30 17:40:12 +0000

似乎你需要做的就是评论(或删除)这两行。