We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to countdown with time over 24 hours with format "HH:mm:ss" Example show 35:23:23
The text was updated successfully, but these errors were encountered:
I resolved my problem with other repository: (https://github.com/mineschan/MZTimerLabel)
func timerLabel(_ timerLabel: MZTimerLabel!, customTextToDisplayAtTime time: TimeInterval) -> String! { let seconds = time.truncatingRemainder(dividingBy: 60) let minutes = (time / 60).truncatingRemainder(dividingBy: 60) let hours = time / 3600 return String(format: "%02.0f:%02.0f:%02.0f", hours, minutes, seconds) }
Sorry, something went wrong.
Fix warning. See issue suzuki-0000#23
75bda94
No branches or pull requests
How to countdown with time over 24 hours with format "HH:mm:ss"
Example show 35:23:23
The text was updated successfully, but these errors were encountered: