NotificationCenter

등록된 모든 Observer에게 정보를 전달하는 메커니즘

동작방식

Notification Center

Observer가 관찰 시작 → 작업이 발생하면 Sender가 Post → Observer selector 실행

NotificationCenter.default.addObserver(self, selector: #selector(handleNoti(_:)), name: myNoti, object: nil)
NotificationCenter.default.post(name:"myNoti", object:" 전달할 값")

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/d582344b-6aac-4ea1-9fa6-6dd47ad6a550/R1280x0.png