Apple 공식 문서에 따르면 NotificationCenter란 등록된 observer에게 정보를 전송할 수 있게 해주는 notification(알림) 전송 방법이라고 한다. NotificationCenter는 Delegate Pattern과 함께 어플리케이션 내에서 객체가 서로 상호작용할 수 있는 방법 중 하나이다. NotificationCenter의 동작 방식 특정 객체가 NotificationCenter에 등록된 Event를 발생시키면, NotificationCennter에 등록된 Observer들 중 해당 Event를 담당 중인 Observer가 그 Event에 대한 행동을 취하는 것(#selector)이 NotificationCenter가 동작하는 방식이다. 어떻게 활용할 수 있을까? 동작방식..