2월 3일 목요일 / 11일 차 CH05 일기 앱 만들기 - 즐겨찾기, 에러 처리 내용 요약 Notification NotificationCenter 를 통해 정보를 저장하기 위한 구조체입니다. NotificationCenter 등록된 observer 에게 동시에 notification 을 전달하는 클래스 NotificationCenter 는 notification 을 발송하면 NotificationCenter에서 메세지를 전달한 observer를 처리할 때까지 대기함 (흐름이 동기적으로 흘러감) - addObserver : 관찰자를 대기시킴 - selector : 관찰자가 수행해야 할 업무를 의미 Ex) NotificationCenter.default.addObserver( self, selector:..