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
- ribs
- SWIFT
- UITextView
- Observable
- 리펙토링
- uiscrollview
- rxswift
- swift documentation
- 스위프트
- Human interface guide
- UICollectionView
- 리팩토링
- Clean Code
- Protocol
- collectionview
- Xcode
- 클린 코드
- uitableview
- 리펙터링
- clean architecture
- 애니메이션
- RxCocoa
- tableView
- swiftUI
- ios
- MVVM
- combine
- map
- HIG
- Refactoring
Archives
- Today
- Total
목록json decoding (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] JSON 문자열 날짜, snake_case 디코딩 (JSON Decoding, Strategy)
사전 지식) string to date 형변환 방법 DateFormatter 인스턴스를 사용하여 문자열을 어떤 형태의 날짜 형태로 만들것인지 명시 DateFormatter 인스턴스로 string을 date로 변환 let dateString = "2022-04-11T15:25:47.929Z" let dateFormatter = DateFormatter() dateFormatter.locale = .init(identifier: "en_US_POSIX") dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSZ" if let date = dateFormatter.date(from: dateString) { print(date) // Date 타입 2015-05-15 ..
iOS 기본 (swift)
2022. 4. 13. 23:00