Open YouHojoon opened 1 year ago
NotificationCener.default.addObserver(self, selector: #selector(noti(_:)), name: .noti, object: nil)
NotificationCenter.default.post(name: .noti, object: "전달값")
extension으로 Notification.Name의 태그를 정의해주면 편하게 쓸 수 있음.
extension Notification.Name {
static let noti = Notification.Name("noti")
}
동작 방식
활용 방안