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
- MVVM
- rxswift
- swiftUI
- 리펙토링
- Protocol
- SWIFT
- UICollectionView
- Observable
- Clean Code
- combine
- Xcode
- clean architecture
- tableView
- 스위프트
- Refactoring
- collectionview
- Human interface guide
- map
- 리팩토링
- swift documentation
- UITextView
- RxCocoa
- uitableview
- 애니메이션
- uiscrollview
- HIG
- ribs
- 리펙터링
- ios
- 클린 코드
Archives
- Today
- Total
목록RawPresentable (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] enum의 RawPresentable과 associated type 개념 (Enum with raw type cannot have cases with arguments)
enum의 RawRresentable 개념 enum에서 각 case들은 rawValue(원시값)을 가질 수 있음 enum이 Rawpresentable을 따르게 되면 아래처럼 rawValue로도 초기화할 수 있고 rawValue 프로퍼티로 값을 가져올수도 있음 즉 RawPresentable은 case문에 관해 값을 초기화하고 해당 값을 또 리턴할 있는 것 public protocol RawRepresentable { associatedtype RawValue init?(rawValue: Self.RawValue) var rawValue: Self.RawValue { get } } 암묵적인 RawPresentable enum을 만들 때 옆에 Int와 같은 타입을 따르게 되면 암묵적으로 RawValue가 In..
iOS 응용 (swift)
2023. 5. 2. 01:19