通知机制与委托机制不同,前者是“一对多”的对象之间的通信,后者是“一对一”的对象之间的通信。
以QQ联系人列表表头的点击事件为例,要在用户点击表头视图触发表头视图的点击事件后发生TableVIew数据刷新
第一步:定一个通知名称的全局变量
let reloadGroupNotificationName = NSNotification.Name(rawValue: "reloadGroupNotification")
第二步:在VIewController的ViewDIdLoad()中为ViewController注册一个要监听的通知
NotificationCenter.default.addObserver(self, selector: #selector(self.reloadGroup(_:)), name: reloadGroupNotificationName, object: nil)需要监听通知的对象是本身(self == ViewController)
收到通知后执行的方法是reloadGroup()
要监听的通知的名称 reloadGroupNotificationName
收到通知后需要不需要传递值
第三步:在用户点击表头触发的事件中发出一个自定义通知
NotificationCenter.default.post(name: reloadGroupNotificationName, object: self) 发送一个名称为reloadGroupNotificationName 的通知发送通知,并且传一个值 (self == 表头本身)
第四步:在ViewController中书写一个收到消息后执行的方法
func reloadGroup(_ notification : Notification){ //MARK: 刷新队形Section的数据 let header = notification.object as! ContactHeaderView //获取伴随这通知的发送而传递的参数 let indexSet = NSIndexSet(index: header.tag) //获取表头视图的Tag值(在TableVIew中初始化的时候将Tag值设为其Section的值) self.tableView.reloadSections(indexSet as IndexSet, with: .automatic) //刷新制定section的数据 动画效果:自动 }