gpt4 book ai didi

iphone - NSDateFormatter 语言环境

转载 作者:可可西里 更新时间:2023-11-01 04:08:53 25 4
gpt4 key购买 nike

如何为 NSDateFormatter 设置 Locale?我试过下面的代码,但它不起作用。

- (NSString *)localizedStringWithFormat:(NSString *)format {

NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateFormat:format];
NSCalendar *cal = [NSCalendar currentCalendar];
NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier: @"fr_FR"];
cal.locale = locale;
df.calendar = cal;
return [df stringFromDate:self];
}

请告诉我如何进行这项工作。

谢谢。

最佳答案

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
NSLocale *locale = [[NSLocale alloc]
initWithLocaleIdentifier:@"he"];
[dateFormatter setLocale:locale];

关于iphone - NSDateFormatter 语言环境,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18964747/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com