ios讨论群1群:135718460
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中。假设对项目的逻辑结构不是非常清楚一般用通知。