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
- swift documentation
- 리펙터링
- 리펙토링
- map
- clean architecture
- 스위프트
- 리팩토링
- tableView
- UICollectionView
- 클린 코드
- rxswift
- ios
- 애니메이션
- Observable
- MVVM
- RxCocoa
- swiftUI
- uiscrollview
- Clean Code
- Refactoring
- UITextView
- collectionview
- HIG
- uitableview
- Xcode
- combine
- SWIFT
- ribs
- Human interface guide
- Protocol
Archives
- Today
- Total
목록for문 unwrap (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