发送通知方法:
name:一般情况下我们需要定义成一个常量, 如:kNotiAddPhoto
object:(谁发送的通知) 一般情况下我们可以不传,置为nil表示<匿名发送> ,如果我们只需要传入一个参数的话,比如说本身控制器或者该类中的某一个控件的话,我们就可以使用object传出去,例子如下
NotificationCenter.default.post(name: <#T##NSNotification.Name#>, object: <#T##Any?#>)
//由于事件要多级传递,所以才用通知,代理和回调其实也是可以的 NotificationCenter.default.post(name: NSNotification.Name(rawValue: kNotiAddPhoto), object: nil) //只传入一个object:参数的控件: @IBAction func closeBtnClick() { NotificationCenter.default.post(name: NSNotification.Name(rawValue: kNotiRemovePhoto), object: imageView.image) } //传入多个参数需要使用userInfo传入: NotificationCenter.default.post(name: <#T##NSNotification.Name#>, object: <#T##Any?#>, userInfo: <#T##[AnyHashable : Any]?#>) NotificationCenter.default.post(name: NSNotification.Name(rawValue: "你定义的名字name"), object: nil, userInfo:["name" : "XJDomain", "age" : 18])
接收通知方法:
NotificationCenter.default.addObserver(<#T##observer: Any##Any#>, selector: <#T##Selector#>, name: <#T##NSNotification.Name?#>, object: <#T##Any?#>) //接受添加图片的通知 NotificationCenter.default.addObserver(self, selector: #selector(addPhoto), name: Notification.Name.init(rawValue: kNotiAddPhoto), object: nil) //上面通知调用方法: 没有参数的方法 //添加照片 @objc fileprivate func addPhoto(){ //方法调用 } -------------------------------------------------------------- //接受删除图片的通知 NotificationCenter.default.addObserver(self, selector: #selector(removePhoto(noti:)), name: NSNotification.Name(rawValue: kNotiRemovePhoto), object: nil) //上面通知调用方法: 有参数的方法 //删除照片 @objc fileprivate func removePhoto(noti : Notification) { guard let image = noti.object as? UIImage else { return } guard let index = images.index(of: image) else { return } images.remove(at: index) picPickerCollectionView.images = images }
移除通知:
//在接收通知控制器中移除的,不是在发送通知的类中移除通知的 //移除通知<通知移除是在发通知控制器中移除> deinit { NotificationCenter.default.removeObserver(self) }