首页 > 代码库 > swift中通知的使用

swift中通知的使用

1.发通知。(以这条通知为例,通知名字:gameOverNotification。通知参数:title)

NSNotificationCenter.defaultCenter().postNotificationName("gameOverNotification", object: title)


2.在要监听这则通知的viewDidload方法里面添加观察者,以便监听这则通知

      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中,如果对项目的逻辑结构不是很清楚一般用通知。