일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Refactoring
- RxCocoa
- 리펙터링
- Clean Code
- rxswift
- map
- uiscrollview
- swift documentation
- combine
- 스위프트
- UICollectionView
- swiftUI
- UITextView
- collectionview
- ribs
- clean architecture
- HIG
- Xcode
- 애니메이션
- Observable
- Protocol
- Human interface guide
- ios
- tableView
- uitableview
- 리펙토링
- SWIFT
- 클린 코드
- MVVM
- 리팩토링
- Today
- Total
목록디코딩 (3)
김종권의 iOS 앱 개발 알아가기
사전 지식) 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 ..
* 기본적인 Codable, Decode, Encode 개념은 이곳 참고 * 관련 포스팅 글 json, codable, nestedContainer(keyedBy:forKey:), Decoding 중첩 모델 처리 방법 (디코딩) json, codable, nestedContainer(keyedBy:forKey:), Encoding 중첩 모델 처리 방법 (인코딩) json, codable, nestedContainer(keyedBy:forKey:), KeyedCodable로 중첩 모델 처리 방법 중첩 모델을 flatten 모델로 정의 방법 { "user_id": "jake", "blog_info": { "name": { "first": "iOS 앱 개발 알아가기", "second": "SwiftUI 앱 개..
* 기본적인 Codable, Decode, Encode 개념은 이곳 참고 * 관련 포스팅 글 json, nestedContainer(keyedBy:forKey:), Decoding 중첩 모델 처리 방법 (디코딩) json, nestedContainer(keyedBy:forKey:), Encoding 중첩 모델 처리 방법 (인코딩) json, nestedContainer(keyedBy:forKey:), KeyedCodable로 중첩 모델 처리 방법 중첩 모델을 flatten 모델로 정의 방법 nestedContainer(keyedBy:forKey:) 사용 nestedContainer에 접근할때 사용되는 메소드 ex) 아래 json 데이터에서 blog_info.name.first 값만 사용하고 싶은 경우, ..