首页 > 代码库 > swift中通知的使用
swift中通知的使用
1.发通知。(以这条通知为例,通知名字:gameOverNotification。通知参数:title)
NSNotificationCenter.defaultCenter().postNotificationName("gameOverNotification", object: title)
NSNotificationCenter.defaultCenter().addObserver(self, selector: "gameOver:", name: "gameOverNotification", object: nil)
3.实现2中的selector,监听到通知调用的方法
func gameOver(title:NSNotification) { var str = title.object as String self.titleLable.text = str }
提醒:此处的通知调用方法中的参数必须为NSNotification,因为我们发的就是1条通知。
友情提示:在swift中,如果对项目的逻辑结构不是很清楚一般用通知。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。