HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – NSDateFormatter:根据currentLocale的日期,不含Year大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
这不可能太难了

我想显示一个没有一年的日期.例如:“8月2日”(美国)或“02.08”. (德国)
它也适用于一大堆其他地区.

到目前为止我唯一的想法是用一年的正常格式,然后从生成的字符串中删除年份.

解决方法

我想你需要看看:
+ (NSString *)dateFormatFromTemplate:(NSString *)template options:(NSUInteger)opts locale:(NSLocale *)locale

根据文档:

NSLocale *usLocale = [[NSLocale alloc] initWithLocalEIDentifier:@"en_US"];
NSLocale *gbLocale = [[NSLocale alloc] initWithLocalEIDentifier:@"en_GB"];

NSString *dateFormat;
// NOTE!!! I removed the 'y' from the example
NSString *dateComponents = @"MMMMd";  //@"ymMMMd";

dateFormat = [NSDateFormatter dateFormatFromTemplate:dateComponents options:0 locale:usLocale];
NSLog(@"Date format for %@: %@",[usLocale displayNameForKey:NSLocalEIDentifier value:[usLocale localEIDentifier]],dateFormat);

dateFormat = [NSDateFormatter dateFormatFromTemplate:dateComponents options:0 locale:gbLocale];
NSLog(@"Date format for %@: %@",[gbLocale displayNameForKey:NSLocalEIDentifier value:[gbLocale localEIDentifier]],dateFormat);

// Output:
// Date format for English (United States): MMMM d,y
// Date format for English (United Kingdom): d MMMM y

额外的代码(添加到上面的代码):

// 
NSDateFormatter * formatter = [[NSDateFormatter alloc] init];
formatter.locale = gbLocale;
formatter.dateFormat = dateFormat;
NSLog(@"date: %@",[formatter StringFromDate: [NSDate date]]);

看这里:
NSDateFormatter Class Reference

大佬总结

以上是大佬教程为你收集整理的ios – NSDateFormatter:根据currentLocale的日期,不含Year全部内容,希望文章能够帮你解决ios – NSDateFormatter:根据currentLocale的日期,不含Year所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。