在 iPhone 中将字符串转换为日期时出现问题?
如何将 NSString 2010-08-03 04:37:31.0 转换为 2010 年 8 月 3 日?
是否可以?
How to convert NSString 2010-08-03 04:37:31.0 to August 3, 2010?
Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能是重复的,但
NSDateFormatter
正是您正在寻找的。但这种方法有两个问题。
NSDateFormatterStyle
格式(例如NSDateFormatterLongStyle
),则可以解决此问题。This is probably a duplicate but
NSDateFormatter
is what you are looking for.There are two problems with this approach though.
NSDateFormatterStyle
formats likeNSDateFormatterLongStyle
.查看 NSDateFormatter 文档。您可能需要
@"%B %e, %Y"
格式字符串作为输出。Check out the NSDateFormatter documentation. You probably want a format string of
@"%B %e, %Y"
for the output.