Adapter is a structural design pattern that allows objects with incompatible interfaces to work together.
Delegate swift 언어를 공부하다보면 반드시 나오는, 꼭 알아야 하는 개념 중 하나가 delegate이다. Protocol delegate을 이해하기 위해서는 선행적으로 protocol 개념에 대해서도 알아야 한다. delegate는 protocol로 구현되기 때문이다. protocol? 일종의 약속을 의미한다. 즉, 서로 간 지켜야 할 규약이...