将“NSDate”转换为“NSString”,例如@“11:22am”?
如何将 NSDate
的时间转换为 NSString
,例如 @"11:22am"
?如何支持所有语言环境?
How do I convert the time of an NSDate
to an NSString
, e.g., @"11:22am"
? How do I support all locales?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用 NSDateFormatter,最好使用 NSDateFormatterStyle 常量,谁的值会不同取决于用户的区域设置(例如,美国/英国/澳大利亚都有不同的短日期格式)。
You need to use NSDateFormatter, preferably using one of the NSDateFormatterStyle constants, who's value will be different depending on the locale of the user (USA/UK/Australia all have different short date formats for example).
用于此
NSDateFormatter
:Use for this
NSDateFormatter
: