swiftで日付を扱う場合について、
02月を2月にしたい時のメモ。
0パディング(0埋め)の情報は出てくるけれど
月の頭の0を取る方法がなかなかわからなかったので…
swift
let myDateFormatter: NSDateFormatter = NSDateFormatter()
myDateFormatter.dateFormat = "YYYY年M月"
YYYY年MM月としていたところを
YYYY年M月にするだけでした!
We'll deliver articles that match you.
You can read useful information later.
Go to list of users who liked
More than 5 years have passed since last update.
swiftで日付を扱う場合について、
02月を2月にしたい時のメモ。
0パディング(0埋め)の情報は出てくるけれど
月の頭の0を取る方法がなかなかわからなかったので…
let myDateFormatter: NSDateFormatter = NSDateFormatter()
myDateFormatter.dateFormat = "YYYY年M月"
YYYY年MM月としていたところを
YYYY年M月にするだけでした!
Register as a new user and use Qiita more conveniently
Go to list of users who liked