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 |
Tags
- 알고리즘
- uikit
- spritekit
- cs
- 웹
- 컴퓨터그래픽스
- 1일1알골
- TCA
- widget
- SwiftUI
- 스위프트
- 대외활동
- 후기
- 리액트
- 네트워크
- 백준
- 영남대
- 스유
- composable architecture
- 멋사
- 멋쟁이사자처럼
- Protocol
- 운영체제
- 위젯킷
- 문법
- c++
- widgetkit
- Swift
- swift concurrency
- dispatchqueue
Archives
- Today
- Total
목록싱글톤 (1)
맛동산이
타입으로서의 Protocol 그리고 싱글톤 의존성 개선
프로토콜은 타입으로 사용이 가능하다. 이것은 해당 프로토콜을 채택한 어떠한 클래스의 인스턴스도 들어갈 수 있다는 것을 의미한다. " You can set it to an instance of any type that adopts the protocol ." 예를 들어 protocol Human { func getAge() -> Int } class Male: Human { var age: Int init(_ age: Int) { self.age = age } func getAge() -> Int { return age } } class Female: Human { var age: Int var name: String init(age: Int, name: String) { self.age = age sel..
앱/Swift
2023. 4. 9. 20:47