标签:rawValue nil 通知 self NotificationCenter ItemViewController todoSomething Swift
不管是通知,还是代理,闭包,说白了,其主要目的都是在不同的类之间传值,比如你想在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
本站声明:
1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。