9

我确定我只是错过了一些东西。但是我已经用谷歌搜索了几天,试图找到如何在显示具有 NSDateFormatterShortStyle 样式的 NSDate 时显示 4 位数的年份。如果您有解决方案,请告诉我。这是我现在使用的代码。

[NSDateFormatter setDefaultFormatterBehavior:NSDateFormatterBehavior10_4];
    NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease ];
    [dateFormatter setDateStyle:NSDateFormatterShortStyle];
    [dateFormatter setTimeStyle:NSDateFormatterNoStyle];

    // add label for birth
    UILabel *birthday = [[UILabel alloc] initWithFrame:CGRectMake(125, 10, 100, 25)];
    birthday.textAlignment = UITextAlignmentRight;
    birthday.tag = kLabelTag;
    birthday.font = [UIFont boldSystemFontOfSize:14];
    birthday.textColor = [UIColor grayColor];
    birthday.text = [dateFormatter stringFromDate:p.Birth];
4

4 回答 4

12

以防有人像我一样在这里绊倒,因为我需要这样一个具有本地化日期格式的 2 位数年份的东西,这是一个非常老的问题,这是我的解决方案:

NSLocale*           curLocale = [NSLocale currentLocale];
NSString*           dateFmt   = [NSDateFormatter dateFormatFromTemplate: @"ddMMyyyy"
                                                                options: 0
                                                                 locale: curLocale];
NSDateFormatter*    formatter = [[[NSDateFormatter alloc] init] autorelease];
                    [formatter setDateFormat:dateFmt];
NSString*           retText = [formatter stringFromDate:refDate];

return retText;

也许有人可以在某个时候使用它...

于 2011-03-18T02:24:12.547 回答
11

如果您需要四位数年份,请dateformat:使用您想要的确切格式设置。缺点是您会丢失自动区域设置格式。

NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"MM/dd/yyyy"];

...

birthday.text = [dateFormatter stringFromDate:p.Birth];

如果您需要本地化,那么您可以尝试修改短样式的日期格式。

NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease ];
[dateFormatter setDateStyle:NSDateFormatterShortStyle];
[dateFormatter setTimeStyle:NSDateFormatterNoStyle];

if ([[dateFormatter dateFormat] rangeOfString:@"yyyy"].location == NSNotFound) { 
    NSString *fourDigitYearFormat = [[dateFormatter dateFormat] stringByReplacingOccurrencesOfString:@"yy" withString:@"yyyy"]; 
    [dateFormatter setDateFormat:fourDigitYearFormat];             
}

更新了 Max Macleod 的错误修复

于 2009-05-10T16:03:50.633 回答
1

这是一个旧线程,但是因为我试图做 Dave 想要做的事情,但因为给出的答案都不是正确的,所以这是解决方案(以防有人想要同样的事情):

NSString *FormatString = [NSDateFormatter dateFormatFromTemplate:@"MM/dd/yyyy HH:mm" options:0 locale:[NSLocale currentLocale]];
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:FormatString];
//Parse date here with the formater (like [formatter stringFromDate:date])
[formatter release];
于 2012-03-29T14:58:20.390 回答
0

kCFDateFormatterShortStyle 指定一个短样式,通常只有数字,例如“11/23/37”或“3:30pm”。

适用于 Mac OS X v10.3 及更高版本。

在 CFDateFormatter.h 中声明。

来源

NSDateFormatterShortStyle 似乎没有给你 4 位数的年份。

于 2009-05-10T15:55:17.540 回答