本地化持续时间为 NSString。 (可可)
我知道如果想显示日期,Objective-C 有方法将日期作为字符串转换为当前区域设置。是否有等效的持续时间?我的意思是在不同的区域设置中类似 00:12:34(0 小时 12 分 34 秒)?
I know if want to display a date, that Objective-C has methods to convert the date as a string to the current locale settings. Is there an equivalent for durations? I mean something like 00:12:34 (0 hours, 12 minutes and 34 seconds) in different locales?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你需要的是创建一个 NSDateFormatter 并调用 setDateStyle: 将其设置为 NSDateFormatterNoStyle,然后它只会显示时间而不显示日期。
I think what you need is to create an NSDateFormatter and call setDateStyle: to set it to NSDateFormatterNoStyle, and then it will only show the time without showing date.