일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스위프트
- map
- rxswift
- Protocol
- Human interface guide
- uitableview
- 리펙토링
- ribs
- 리펙터링
- 애니메이션
- HIG
- UICollectionView
- RxCocoa
- combine
- swift documentation
- Xcode
- 클린 코드
- MVVM
- clean architecture
- Refactoring
- UITextView
- 리팩토링
- uiscrollview
- ios
- swiftUI
- tableView
- Clean Code
- Observable
- collectionview
- SWIFT
- Today
- Total
목록Optional Chaining (2)
김종권의 iOS 앱 개발 알아가기
Optional Chaining 정의: Optional인 것들을 가지고 property나 method, subscript를 쿼리하고 호출하는 프로세스 optional값 중 하나가 nil이 되면 nil반환, 단 중단되는게 아닌 해당부분만 nil반환 let someOptoinalProperty: SomeProperty? = nil print("start") // start print(someOptoinalProperty?.value) // nil print("end") // end Forced Unwrapping의 대안으로 Optional Chaining 사용 런타임 오류에 예방 let roomCount = john.residence!.numberOfRooms if let roomCount = john.re..
Optional Binding 조건문과 함께 Optional을 unWrapping할 수 있는 것 보통 흔한 것은 guard, if문이지만 switch문도 optional binding에 속하는 것 주의 switch 문에 대한 Optional binding let t1 = Optional(1) switch t1 { case 0: print(0) case 1: print(1) // 실행 default: print(nil) } let t2 = Optional(nil) switch t2 { case 0: print(0) case 1: print(1) default: print(nil) // 실행 } Optinoal Chaining 하위 property에 optional 값이 있는지 연속적으로 체크하면서 하나라도..