NSNotificationCenter观察器不起作用

时间:2015-12-01 01:54:00

标签: ios swift nsnotificationcenter

我正在尝试发布通知,如下所示:

  NSNotificationCenter .defaultCenter() .postNotificationName("name", object: nil)
来自viewControllerA

的函数

然后在viewDidLoad

中的ViewControllerB中
   NSNotificationCenter.defaultCenter().addObserver(self, selector: "doSomething:", name:"name", object: nil)

但永远不会调用doSomething:

任何想法?

1 个答案:

答案 0 :(得分:3)

这里有两个控制器中的代码。

在订阅/收听 ViewController

func viewDidLoad() {
    NSNotificationCenter.defaultCenter().addObserver(self, selector: "doSomething:", name: "name", object: nil)
}

func doSomething(notification: NSNotification) {
    print("Notification was posted.")
}

在发布/发布 ViewController

func viewDidLoad() {
    NSNotificationCenter.defaultCenter().postNotificationName("name", object: nil)
}

如果它不起作用,可能是由于您的应用程序架构:

  • 两个ViewControllers目前都已加载到内存中吗?
  • 在发送通知之前是否添加了观察者?