美文网首页
IOS 通知中心NotificationCenter

IOS 通知中心NotificationCenter

作者: 宁静世界 | 来源:发表于2018-09-30 18:21 被阅读0次
//发送
   NotificationCenter.default.post(name: NSNotification.Name(rawValue: "reloadmysymbol"), object: true)

//监听
NotificationCenter.default.addObserver(self, selector: #selector(reload), name: NSNotification.Name(rawValue: "reloadmysymbol"), object: nil)

//移除
 NotificationCenter.default.removeObserver(self)

相关文章

网友评论

      本文标题:IOS 通知中心NotificationCenter

      本文链接:https://www.haomeiwen.com/subject/uvawoftx.html