티스토리 뷰
728x90
반응형
Time Format 중 Hour를 헷갈렸어서 정리
[ 요약 ]
- HH: 24 hour format / 무조건 2자리 (필요할 경우, 앞에 0 붙여줌)
- hh : 12 hour format / 무조건 2자리 (필요할 경우, 앞에 0 붙여줌)
- H : 24 hour format / 1~2 자리
- h: 12 hour format / 1~2 자리
[ 실험 ]
우선 플레이그라운드를 열고 준비를 합니다.
This file contains 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 | |
extension DateFormatter { | |
static let standard: DateFormatter = { | |
let formatter = DateFormatter() | |
formatter.dateFormat = "yyyy-MM-dd HH:mm:ss" | |
return formatter | |
}() | |
static let time_HHmm: DateFormatter = { | |
let formatter = DateFormatter() | |
formatter.dateFormat = "HH:mm" | |
return formatter | |
}() | |
static let time_hhmm: DateFormatter = { | |
let formatter = DateFormatter() | |
formatter.dateFormat = "hh:mm" | |
return formatter | |
}() | |
static let time_Hmm: DateFormatter = { | |
let formatter = DateFormatter() | |
formatter.dateFormat = "H:mm" | |
return formatter | |
}() | |
static let time_hmm: DateFormatter = { | |
let formatter = DateFormatter() | |
formatter.dateFormat = "h:mm" | |
return formatter | |
}() | |
} | |
func date(year: Int, month: Int, day: Int, hour: Int, minute: Int, seconds: Int = 0) -> Date? { | |
return DateFormatter.standard.date(from: "\(year)-\(month)-\(day) \(hour):\(minute):\(seconds)") | |
} |
Case 1.
let sampleDate = date(year: 2021, month: 7, day: 5, hour: 22, minute: 30)!
print(DateFormatter.time_HHmm.string(from: sampleDate)) // 22:30
print(DateFormatter.time_hhmm.string(from: sampleDate)) // 10:30
print(DateFormatter.time_Hmm.string(from: sampleDate)) // 22:30
print(DateFormatter.time_hmm.string(from: sampleDate)) // 10:30
Case 2.
let sampleDate = date(year: 2021, month: 7, day: 5, hour: 3, minute: 3)!
print(DateFormatter.time_HHmm.string(from: sampleDate)) // 03:03
print(DateFormatter.time_hhmm.string(from: sampleDate)) // 03:03
print(DateFormatter.time_Hmm.string(from: sampleDate)) // 3:03
print(DateFormatter.time_hmm.string(from: sampleDate)) // 3:03
[ 참고 ]
참고로 AM/PM or am/pm 표현은 a 이다.
12 hour format에서 07:05:45PM 은 hh:mm:ssa 로 나타낼 수 있다.
24 hour format 에서 19:05:45PM 은 HH:mm:ssa 로 나타낼 수 있다.
func timeConversion(s: String) -> String {
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "hh:mm:ssa"
let date = dateFormatter.date(from: s)
dateFormatter.dateFormat = "HH:mm:ssa"
return dateFormatter.string(from: date ?? Date())
}
// 12시간 포맷을 24시간 포맷으로 바꾸고 싶을 때
timeConversion(s: "07:05:45PM") // 19:05:45PM
func timeConversion(s: String) -> String {
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "hh:mm:ssa"
let date = dateFormatter.date(from: s)
dateFormatter.dateFormat = "hh:mm:ss a"
return dateFormatter.string(from: date ?? Date())
}
// PM을 한칸 띄우고 싶을 때
timeConversion(s: "07:05:45PM") // 07:05:45 PM
반응형
'🍏 > iOS' 카테고리의 다른 글
[iOS] Xcode 별 Swift 버전 확인하기 (0) | 2021.08.04 |
---|---|
[iOS] iPad에서 Keyboard Navigation 으로 포커스 이동하기 (2) | 2021.07.08 |
[iOS] application(_:didReceiveRemoteNotification..)과 userNotificationCenter(_:didReceive..) 이 같이 있을 때 주의사항 (1) | 2021.06.26 |
[iOS] Provisioning Profile 헷갈리는 것 정리 (1) | 2021.06.01 |
[iOS] Local Notification (0) | 2021.05.31 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- METAL
- Flutter Clipboard
- 구글 Geocoding API
- Flutter Text Gradient
- flutter 앱 출시
- Python Type Hint
- ribs
- flutter build mode
- Django Heroku Scheduler
- PencilKit
- flutter deep link
- Flutter getter setter
- SerializerMethodField
- 장고 Custom Management Command
- Django Firebase Cloud Messaging
- ipad multitasking
- drf custom error
- github actions
- flutter dynamic link
- Flutter 로딩
- Sketch 누끼
- 장고 URL querystring
- DRF APIException
- Django FCM
- 플러터 싱글톤
- 플러터 얼럿
- Flutter Spacer
- cocoapod
- Watch App for iOS App vs Watch App
- Dart Factory
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
글 보관함