swift3.0NotificationCenter通知使用

发送通知方法:

name:一般情况下我们需要定义成一个常量, 如:kNotiAddPhoto

object:(谁发送的通知)      一般情况下我们可以不传,置为nil表示<匿名发送>   ,如果我们只需要传入一个参数的话,比如说本身控制器或者该类中的某一个控件的话,我们就可以使用object传出去,例子如下

1

NotificationCenter.default.post(name: <#T##NSNotification.Name#>, object: <#T##Any?#>)

1

2

3

4

5

6

7

8

9

10

11

//由于事件要多级传递,所以才用通知,代理和回调其实也是可以的

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])

接收通知方法:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

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

}

移除通知:

1

2

3

4

5

//在接收通知控制器中移除的,不是在发送通知的类中移除通知的

//移除通知<通知移除是在发通知控制器中移除>

deinit {

    NotificationCenter.default.removeObserver(self)

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

编程工人

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值