Swift中通知的使用


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

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

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

NSNotificationCenter.defaultCenter().addObserver(self, selector: "gameOver:", name: "gameOverNotification", object: nil)

实现上面代码中的selector,监听到通知调用的方法

func gameOver(title:NSNotification) {
      var str = title.object as String
        self.titleLable.text = str
}
提醒:此处的通知调用方法中的参数必须为NSNotification,因为我们发的就是1条通知。

原文地址

swift中通知的使用

你可能感兴趣的:(Swift中通知的使用)