Skip to content

Instantly share code, notes, and snippets.

@KentarouKanno
Last active March 26, 2019 10:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KentarouKanno/b49bf2d84d5c0534f9bd to your computer and use it in GitHub Desktop.
Save KentarouKanno/b49bf2d84d5c0534f9bd to your computer and use it in GitHub Desktop.

現在時刻のミリ秒表示(Swift4)

func nowTime() -> String { /* 2018-04-30 19:33:32.265253+0900 */
    let format = DateFormatter()
    format.dateFormat = "yyyy/MM/dd HH:mm:ss.SSS"
    return format.string(from: Date())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment