NSTimeInterval 格式化
我想将我的 NSTimeInterval
并将其格式化为字符串 00:00:00(小时、分钟、秒)。最好的方法是什么?
I want to take my NSTimeInterval
and format it into a string as 00:00:00 (hours, minutes, seconds). What is the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
从 iOS 8.0 开始,现在有了
NSDateComponentsFormatter
,它有一个stringFromTimeInterval:
方法。Since iOS 8.0 there is now
NSDateComponentsFormatter
which has astringFromTimeInterval:
method.“最好”是主观的。最简单的方法是这样的:
更新
从 iOS 8.0 和 Mac OS X 10.10 (Yosemite) 开始,如果您需要符合区域设置的解决方案,可以使用
NSDateComponentsFormatter
。示例:但是,我没有找到强制其输出小时两位数的方法,因此如果这对您很重要,您将需要使用不同的解决方案。
"Best" is subjective. The simplest way is this:
UPDATE
As of iOS 8.0 and Mac OS X 10.10 (Yosemite), you can use
NSDateComponentsFormatter
if you need a locale-compliant solution. Example:However, I don't see a way to force it to output two digits for the hour, so if that's important to you, you'll need to use a different solution.
swift 4.2
测试代码:
更改
unitStyle
以获得不同的样式。像formatter.unitsStyle = .abbreviated
获取输出:
“26h 40m 0s”
swift 4.2
Test code:
Change
unitStyle
to get different styles. likeformatter.unitsStyle = .abbreviated
getoutput:
"26h 40m 0s"
@Michael Frederick 答案的 Swift 版本:
A Swift version of @Michael Frederick's answer :