Notification
정보를 브로드캐스팅하고 받아보는 방법에 대한 디자인 패턴.
원문 출처 https://developer.apple.com/documentation/foundation/notifications
주제
Key-Value Observing
NSKeyValueObserving 다른 객체의 특정 속성의 변경이 있을 때 알림을 받기 위해서 객체가 채택하는 비공식적인 프로토콜
Notifications
struct Notification 등록된 모든 Observer에게 Notification Center(알림 센터)를 통해 브로드캐스트되는 정보 컨테이너
class NotificationCenter 등록된 Observer에게 정보를 브로드캐스트 할 수 있는 notification 발송 매커니즘
class NotificationQueue 알림 센터 버퍼
프로세스 간 노티피케이션
class DistributedNotificationCenter 태스크 경계를 넘어서 notification을 브로드캐스트 할 수 있는 notification 발송 매커니즘
같이 보기
앱 지원
Last updated