250x250
반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- IOS
- enumerations
- protocol
- Extentsion
- it
- ToDoRim
- listview
- reetcode
- xcode
- keyWindow
- algorithm
- Swift
- tip
- github
- dart
- Equatable
- Leetcode
- SwiftGen
- flutter
- Widget
- pubspec.yaml
- designPattern
- COMMIT
- pubspec
- basic
- toyproject
- swiftlint
- GIT
- UIAccessibility
- OSLog
Archives
- Today
- Total
수니의 개발새발
[iOS/Swift] 시간을 다른 형태로 변형하기 (DateFormatter) 본문
728x90
반응형
📌 이번 글은
시간을 다른 형태로 변형하는 방법입니다.
DateFormatter()
extension Date {
/**
# formatted
- Parameters:
- format: 변형할 DateFormat
- Note: DateFormat으로 변형한 String 반환
*/
public func formatted(_ format: String) -> String {
let formatter = DateFormatter()
formatter.dateFormat = format
formatter.timeZone = TimeZone(identifier: TimeZone.current.identifier)!
return formatter.string(from: self)
}
}
Date extension에 Date를 특정 형태의 String값으로 변형하여 반환하는 함수를 생성합니다.
TimeZone.current.identifier은 디바이스 기준 TimeZone 값 입니다.
👩🏻💻 사용 예제
// 현재 시간 표시
Date().formatted("yyyy-MM-dd HH:mm:ss")
// 결과 : 2021-07-16 15:18:23
728x90
반응형
'iOS - Swift' 카테고리의 다른 글
[iOS/Swift] 코드에서 Storyboard, ViewController 접근 (instantiateViewController) (0) | 2022.01.12 |
---|---|
[iOS/Swift] 날짜 비교해서 과거/현재/미래 구하기 (0) | 2021.12.29 |
[iOS/Swift] 현재 시간의 밀리초 구하기 (0) | 2021.12.29 |
[iOS/Swift] 외부 브라우저(사파리)로 링크 열기 (0) | 2021.12.29 |
[iOS/Swift] 시뮬레이터(Simulator) 구동 여부 확인하기 (0) | 2021.12.29 |
Comments