Swift - NotificationCenter通知的基本使用
作者:互联网
不管是通知,还是代理,闭包,说白了,其主要目的都是在不同的类之间传值,比如你想在classA中得到classB中的东西,classC中得到classD中的东西。
下面是一个浅显的例子:
// 点击按钮present到控制器ItemViewController中
@IBAction func next(_ sender: Any) {
let nextVC = ItemViewController(nibName: "ItemViewController", bundle: nil)
self.present(nextVC, animated: true, completion: nil)
//下面的代码相当于注册了一个通知,用来监听上面 self.present...执行完之后的时间点
NotificationCenter.default.post(name: NSNotification.Name(rawValue: "Todo"), object: nil)
}
//ItemViewController中
override func viewDidLoad() {
super.viewDidLoad()
NotificationCenter.default.addObserver(self, selector: #selector(todoSomething), name:NSNotification.Name(rawValue: "Todo"), object: nil)
}
@objc func todoSomething(){
self.view.backgroundColor = .blue
}
NotificationCenter.default.post(name: NSNotification.Name(rawValue: “Todo”), object: nil)这段代码告诉我跳转到ItemViewController之后我要记录一个东西。
NotificationCenter.default.addObserver(self, selector: #selector(todoSomething), name:NSNotification.Name(rawValue: “Todo”), object: nil)这段代码接收上面记录的东西,也就是记录了跳转之后的时间点。
func todoSomething()调用这个方法就是说明我要在跳转到ItemViewController之后做一些todoSomething的事情。
标签:rawValue,nil,通知,self,NotificationCenter,ItemViewController,todoSomething,Swift 来源: https://blog.csdn.net/SoftwareDoger/article/details/97920621