another.im-ios/Monal/another.im/Helpers/TimeInterval+Extensions.swift
2024-11-19 17:07:51 +01:00

10 lines
215 B
Swift

import Foundation
extension TimeInterval {
var minAndSec: String {
let minutes = Int(self) / 60
let seconds = Int(self) % 60
return String(format: "%02d:%02d", minutes, seconds)
}
}