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
- rxswift
- map
- 리펙터링
- 리펙토링
- Refactoring
- collectionview
- combine
- Xcode
- uiscrollview
- Protocol
- swift documentation
- UITextView
- 리팩토링
- SWIFT
- tableView
- ios
- Observable
- HIG
- uitableview
- MVVM
- Clean Code
- 애니메이션
- swiftUI
- UICollectionView
- RxCocoa
- 스위프트
- ribs
- 클린 코드
- clean architecture
- Human interface guide
Archives
- Today
- Total
목록map과 flatMap 차이 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] map과 flatMap 차이 (CollectionType, Optional)
1. map과 flatMap의 차이 - CollectionType에서 쓰임 CollectionType에서 접근: array와 같은 각 개별 요소에 접근하여 변화를 주는 것 만약 Element중에 Optional값이 있다면 flatMap은 unwrap을 해주고, map은 unwrap을 해주지 않음 단, flatMap은 deprecated되어 compactMap 사용 // 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value let c = [1, 2, Optional(3)] .flatMap { $0 } print(c) // [1, 2, 3] 2. map과 flatMap의 차이 ..
iOS 응용 (swift)
2024. 4. 1. 01:31