[Swift] Protocol(프로토콜) - protocol extension(프로토콜 확장)
확장으로 프로토콜 준수 추가 (Adding Protocol Conformance with an Extension) 프로토콜에 extension을 하게되면 기존 타입을 확장할 수 있습니다. 예제를 보면서 이해하는게 더 빠를것 같습니다. 바로가시죠 Extension으로 기본값 지정하기 // 1 protocol Walkable { } // 2 protocol Portable { func port() } // 3 extension Walkable { func walk() { print("걷습니다") } } // 4 struct Human: Walkable, Portable { func port() { print("듭니다") } } var human = Human() human.walk() // 걷습니다 huma..
iOS
2022. 8. 12. 17:36
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- swift (programmers)
- iOS error
- Swift joined()
- ios
- Swift init
- swift programmers
- Swift joined
- Swift 알고리즘
- swift protocol
- swift reduce
- swift 고차함수
- 2023년 회고
- swift property
- Combine: Asynchronous Programming with Swift
- Swift inout
- Swift Error Handling
- Swift RIBs
- Swift 내림차순
- Swift
- Swift 프로퍼티
- removeLast()
- Class
- Swift Leetcode
- RIBs tutorial
- Swift 프로그래머스
- Swift ModernRIBs
- 원티드 프리온보딩
- Swift final
- RTCCameraVideoCapturer
- CS 네트워크
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함