時間の表示形式に変換するにはDateComponentsFormatterが便利

DateComponentsFormatterのメモ\r\n\r\nこちらただのサンプルコードです。\r\n試した時のコードの一部で、本当に自分が忘れないためのメモです。\r\n\r\n\r\ncount = count + 1\r\nlet time:TimeInterval = count\r\nlet formatter = DateComponentsFormatter()\r\nformatter.unitsStyle = .positional\r\nformatter.zeroFormattingBehavior = [ .pad ]\r\nformatter.allowedUnits = [.hour, .minute, .second]\r\ntimeLabel.text = String( formatter.string(from: time)! )\r\n\r\nDateComponentsFormatterはTimeInterval型を使う