Swift
Swift 프로토콜
📌 목록 What is protocol Example Class 에서 주의 사항 Init 📌 What is protocol 특정 역활을 하기 위한 메서드,프로퍼티, 기타 요구사항 등의 청사진 입니다. 📌Example protocol FullyNames { var fullName: String { get set } func printFullName() } struct Person: FullyNames { var fullName: String func printFullName() { print(fullName) } } 📌 Class 에서 주의 사항 상속될 것을 앞에 써주고 그뒤에 protocol을 써줘야 합니다. class SomeClass: SomeSuperClass, FirstProtocol, Secon..