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
- 리펙터링
- 애니메이션
- collectionview
- 클린 코드
- uitableview
- Human interface guide
- Xcode
- Clean Code
- 리펙토링
- rxswift
- Observable
- SWIFT
- Refactoring
- combine
- RxCocoa
- UITextView
- 리팩토링
- clean architecture
- MVVM
- map
- swiftUI
- HIG
- ribs
- Protocol
- tableView
- 스위프트
- swift documentation
- UICollectionView
- uiscrollview
- ios
Archives
- Today
- Total
목록switch-case (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] Switch-case문에서의 Optional Binding 방법 (none, some)
Optional 타입 Optional 타입은 제네릭스를 받고, 그 제네릭스는 Optional 안에 감싼 값을 의미 Optional 타입은 enum이며, 2개의 case가 존재 none: 값이 없는 case some(Wrapped): 값이 있는 case enum Optional: ExpressibleByNilLiteral { case none case some(Wrapped) } Wrapped는 값이라는 의미 swift 내부적으로 값이 없으면 none 케이스를 갖도록하고, 값이 있으면 some 케이스를 갖도록 구현한 것 Swift-case 문에서 Optional Binding 활용 Optional 타입은 none아니면 some인데, some 케이스에서는 값을 바로 접근할 수 있으므로 Optional Bin..
iOS 응용 (swift)
2023. 6. 26. 01:11