将秒整数转换为 HH:MM, iPhone

编程入门 行业动态 更新时间:2024-10-20 07:45:27
本文介绍了将秒整数转换为 HH:MM, iPhone的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在为此苦苦挣扎.我有一个值以秒为单位显示在 HH:MM 格式的标签中.我已经在互联网上搜索了很长时间并找到了一些答案,但要么没有完全理解它们,要么它们看起来像是做我想做的事情的奇怪方式.如果有人能帮我解决这个问题,那就太好了!请记住,我是这个游戏的新手,所以这个问题对于更有经验的人来说似乎是一个非常基本的问题.

I am struggling with this. I have a value in seconds that I want to display in a label in HH:MM format. I have searched the internet for ages and found some answers, but either not fully understood them, or they seem like an odd way of doing what I want. If someone could help me out on this one that would be great! Bear in mind that I am new to this games so this question may seem like a really basic one to the more experienced out there.

推荐答案

我一直在寻找与您正在寻找的相同的东西,但没有找到.所以我写了一个 -

I was looking for the same thing that you are looking but couldn't find one. So I wrote one -

- (NSString *)timeFormatted:(int)totalSeconds { int seconds = totalSeconds % 60; int minutes = (totalSeconds / 60) % 60; int hours = totalSeconds / 3600; return [NSString stringWithFormat:@"%02d:%02d:%02d",hours, minutes, seconds]; }

在 Swift 中也能完美运行:

works perfectly in Swift as well:

func timeFormatted(totalSeconds: Int) -> String { let seconds: Int = totalSeconds % 60 let minutes: Int = (totalSeconds / 60) % 60 let hours: Int = totalSeconds / 3600 return String(format: "%02d:%02d:%02d", hours, minutes, seconds) }

更多推荐

将秒整数转换为 HH:MM, iPhone

本文发布于:2023-11-30 09:39:17,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1649527.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:整数   转换为   HH   MM   iPhone

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!