Created
November 2, 2020 09:30
-
-
Save ryotapoi/140d8055946d8a7f422453fa911fbf74 to your computer and use it in GitHub Desktop.
経過時間などを表す mm:ss 形式のフォーマット
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
let formatter = DateComponentsFormatter() | |
formatter.unitsStyle = .positional | |
formatter.allowedUnits = [.minute, .second] | |
formatter.zeroFormattingBehavior = .pad | |
formatter.string(from: 61) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment