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
- 스위프트
- RxCocoa
- 클린 코드
- Xcode
- collectionview
- tableView
- 리팩토링
- HIG
- rxswift
- map
- ios
- Human interface guide
- Refactoring
- combine
- UICollectionView
- SWIFT
- UITextView
- swiftUI
- uiscrollview
- Observable
- 리펙터링
- uitableview
- 애니메이션
- swift documentation
- 리펙토링
- MVVM
- ribs
- clean architecture
- Protocol
- Clean Code
Archives
- Today
- Total
목록Optional Unwrapping (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 조건문(if, switch)에서의 optional unwrapping, case .none
if 문에서 제공하는 unwrapping 조건문에서 제공하는 unwrapping을 사용하지 않은 경우 var b1: Bool? = true if let unwrppedB1 = b1, unwrppedB1 { print("true b1") } else { print("false b1") } // true b1 조건문에서 제공하는 unwrapping 사용한 경우 바로 b1 == true로 optional 타입이라도 자동으로 unwrapping if b1 == true { print("true1 b1") } else { print("false1 b2") } Bool타입이 아닌 다른 타입도 적용 가능 var integer1: Int? = 1 if integer1 == 1 { print("integer1 is on..
iOS 기본 (swift)
2021. 8. 12. 23:53