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
- Refactoring
- Observable
- collectionview
- tableView
- swiftUI
- 클린 코드
- 애니메이션
- 리펙터링
- UITextView
- Clean Code
- HIG
- uiscrollview
- rxswift
- 리펙토링
- MVVM
- ios
- RxCocoa
- 리팩토링
- map
- UICollectionView
- swift documentation
- uitableview
- combine
- clean architecture
- SWIFT
- ribs
- 스위프트
- Protocol
- Xcode
- Human interface guide
Archives
- Today
- Total
목록Optional 타입 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] for문에서 Optional 간결하게 unwrap하는방법 (for문 unwrap)
Optional 타입 Optional 타입은 제네릭스를 받고, 그 제네릭스는 Optional 안에 감싼 값을 의미 Optional 타입은 enum이며, 2개의 case가 존재 none: 값이 없는 case some(Wrapped): 값이 있는 case enum Optional: ExpressibleByNilLiteral { case none case some(Wrapped) } 조건문에서 unwrap 방법 .some으로 접근 변수?로 접근 let optionalString = Optional("jake") switch optionalString { case .none: print("this is nil") case let .some(value): print("some value = ", value) } ..
iOS 응용 (swift)
2024. 1. 13. 22:38