ios#swift#스위프트#아이폰#애플#프로토콜
IOS 스위프트(Swift) 문법 - 프로토콜
프로토콜이란? 특정 역할을 하기 위한 메서드, 프로퍼티, 기타 요구사항 등의 청사진 /* protocol 이름 { } */ protocol SomeProtocol { } protocol SomeProtocol2 { } struct SomeStructure: SomeProtocol,SomeProtocol2 { } /* class SomeClass: SomeSuperclass, FirtstProtocol, AnotherProtocol { } */ protocol FirstProtocol { var name: Int { get set } var age: Int { get } } protocol AnotherProtocol { static var someTypeProperty: Int { get set } } ..