swift

swift3.0 中NSNotification 的使用

2017-03-03  本文已影响253人  IBegins

swift3.0 有很大变化,其中之一就是NSNotification使用跟原来不一样,以前NSNotification nameString;3.0中定义了一个类型NSNotification.name;

使用时最好定义一个NSNotification.name常量方便使用;

下面废话不多说直接上代码:

//通知名称常量  
let NotifyMsgRecvName = NSNotification.Name(rawValue:"notifyMsgRecvName")  
  
//发送通知  
NotificationCenter.default.post(name:NotifyMsgRecvName, object: nil, userInfo: notification.userInfo)
//接受通知监听  
NotificationCenter.default.addObserver(self, selector:#selector(didMsgRecv(notification:)),  
                                               name: NotifyMsgRecvName, object: nil)     
//通知处理函数  
func didMsgRecv(notification:NSNotification){  
        print("didMsgRecv: \(notification.userInfo)")         
}  
deinit {
        NotificationCenter.default.removeObserver(self)
}
上一篇下一篇

猜你喜欢

热点阅读