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
- 리팩토링
- Human interface guide
- 리펙터링
- UITextView
- 리펙토링
- uiscrollview
- swiftUI
- ribs
- 애니메이션
- clean architecture
- Clean Code
- combine
- UICollectionView
- MVVM
- rxswift
- 스위프트
- swift documentation
- Refactoring
- ios
- Xcode
- collectionview
- uitableview
- 클린 코드
- HIG
- SWIFT
- RxCocoa
- tableView
- Observable
- Protocol
- map
Archives
- Today
- Total
목록#existential types (1)
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] generic과 opaque type 차이, some view와 protocol 반환의 차이 (#opaque types, #existential types)
generic과 opaque type 개념generic은 타입의 유연성을 제공하여 사용하는쪽에서 타입을 정하게끔하는 방법ex) generic을 사용하는 가장 대표적인 예제 - Stack 구현struct Stack { private var elements: [Element] = [] mutating func push(_ element: Element) { elements.append(element) } mutating func pop() -> Element? { elements.popLast() } func peek() -> Element? { elements.last } func isEmpty()..
iOS 응용 (SwiftUI)
2024. 8. 5. 01:04