일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- combine
- clean architecture
- 애니메이션
- uitableview
- 리펙터링
- RxCocoa
- Xcode
- 리펙토링
- Protocol
- map
- ribs
- UITextView
- 클린 코드
- UICollectionView
- uiscrollview
- Clean Code
- 스위프트
- HIG
- SWIFT
- tableView
- swiftUI
- Observable
- collectionview
- 리팩토링
- ios
- MVVM
- swift documentation
- rxswift
- Refactoring
- Human interface guide
- Today
- Total
목록date to string (2)
김종권의 iOS 앱 개발 알아가기
UNIX timestamp 1970-01-01 00:00:00 기준으로 현재까지 몇 초가 지났는지를 나타내는 seconds ex) 1970-01-01 00:00:01의 Unix Timestamp는 `1` timeIntervalSince1970 swift에서의 값은 UNIX timestamp를 의미 Date 객체의 property로 접근 let currentDate = Date().timeIntervalSince1970 print(currentDate) // 1634144792.884293 timeIntervalSince1970은 TimeInterval(=Double) 타입 timeIntervalSince1970 to Date Date(timeIntervalSince1970:) 사용 let unixTime..
1. Date객체 초기화 1) init() 현재 시간 let d = Date() print(d) // print : 2020-05-23 08:57:33 +0000 2) init(timeIntervalSinceNow:) * timeIntervalSinceNow은 Double형 현재 시각으로 부터 입력한 초 이후의 시점 let tomorrow = Date(timeIntervalSinceNow:60*60*24) // 다음날 print(tomorrow) // print : 2020-05-23 21:00:18 +0000 3) init(timeInterval:since:) 다른 Date()객체로부터 입력한 초 이후의 시점 2. DateFormatter - 날짜 및 시간에 대한 포멧화 하는 객체 1) 객체 생성 le..