I have a (somewhat?) basic question regarding time conversions in Swift.
I have an integer that I would like converted into Hours / Minutes / Second
extension Int { func timeDisplay() -> String { return "\(self / 3600):\((self % 3600) / 60):\((self % 3600) % 60)" } }