swift中通知的使用

Posted liguangsunls

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift中通知的使用相关的知识,希望对你有一定的参考价值。

ios讨论群1群:135718460

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

以上是关于swift中通知的使用的主要内容,如果未能解决你的问题,请参考以下文章

来自 JetpackNavigation 库中通知的隐式深层链接

人人必知的10个jQuery小技巧

Python 必知的 20 个骚操作!

在 Xcode 中通过 Objective-C 代码测试 Swift 代码

如何使用 Swift 使用此代码片段为 iOS 应用程序初始化 SDK?

使用 Core Data 在 Swift 中通过 UIProgressView 异步插入数据