1

这段代码有什么问题?

    NSString *strTest = @"Sun Apr 12 23:29:24 +0000 2009";
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"MM/dd/yy"];
    NSDate *createdAtFormatted = [dateFormatter dateFromString:strTest];
    self.createdAt.text = [dateFormatter stringFromDate:createdAtFormatted];

self.createdAt 是一个 UILabel 并且它保持为空。为什么?

尝试使用 dateWithNaturalLanguageString 时,我得到:

在此处输入图像描述

4

2 回答 2

2

您的日期格式化程序日期格式与字符串中的日期格式不匹配strTest

NSString *strTest = @"Sun Apr 12 23:29:24 +0000 2009";
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
NSLocale *loc = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"]; // so the formatter recognizes english names for months and days
[dateFormatter setLocale:loc];
[loc release]; // remove if using ARC
[dateFormatter setDateFormat:@"EEE MMM d HH:mm:ss ZZZZ yyyy"];
NSDate *createdAtFormatted = [dateFormatter dateFromString:strTest];
NSLog(@"got %@", createdAtFormatted);

可以在此处找到格式化程序说明符。

于 2012-04-06T19:16:33.623 回答
1

您正在向 dateFormatter 提供 MM/dd/yy 模式,但您的日期字符串不适合该模式,因此 dateFormatter 返回一个零日期。

于 2012-04-06T19:17:19.380 回答