标签:post title selector var efault art 友情 提醒 height
ios讨论群1群:135718460
1.发通知。(以这条通知为例,通知名字:gameOverNotification。通知參数:title)
NSNotificationCenter.defaultCenter().postNotificationName("gameOverNotification", object: title)
NSNotificationCenter.defaultCenter().addObserver(self, selector: "gameOver:", name: "gameOverNotification", object: nil)
func gameOver(title:NSNotification) { var str = title.object as String self.titleLable.text = str }
友情提示:在swift中。假设对项目的逻辑结构不是非常清楚一般用通知。
标签:post title selector var efault art 友情 提醒 height
原文地址:http://www.cnblogs.com/liguangsunls/p/6803898.html