本文介绍了来自 NSDate 的日期名称?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在我的 iPhone 应用程序中显示日期名称,但我没有找到解决方案.感谢您的帮助
I would like to show the name of day in my iPhone application and i don't found the solution.Thanks for help
推荐答案
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"EEEE"];
NSString *dayName = [dateFormatter stringFromDate:yourDate];
[dateFormatter release];
您会在用户的语言环境中获得 dayName
.
You get dayName
in the locale of the user.
(查看Unicode标准了解日期格式示例)
(check Unicode standards for date formats samples)
这篇关于来自 NSDate 的日期名称?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!