我突然发现,你可能更需要的是这段代码,,,不过,你都是不看 API 文档的么?
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[])
{
@autoreleasepool {
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
NSLocale *cnLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"zh"];
NSString *dateFormat;
NSString *dateComponents = @"yyyy";
dateFormat = [NSDateFormatter dateFormatFromTemplate:dateComponents options:0 locale:cnLocale];
[formatter setDateFormat:dateFormat];
NSLog(@"Date for locale %@: %@",
[cnLocale displayNameForKey:NSLocaleIdentifier value:@"zh"] , [formatter stringFromDate:[NSDate date]]);
}
return 0;
}