繁体   English   中英

Swift 3中的NotificationCenter崩溃

[英]NotificationCenter Crash in Swift 3

它只是我,还是NotificationCenter成为Swift 3中的热点? :)

我有以下设置:

// Yonder.swift
extension Notification.Name {
  static let preferenceNotification = Notification.Name("preferencesChanged")
}

// I fire the notification elsewhere, like this:
NotificationCenter.default.post(name: .preferenceNotification, object: nil)

在我的第一个视图控制器中,这很好用:

// View Controller A <-- Success!
NotificationCenter.default.addObserver(self, selector: #selector(refreshData), name: .preferenceNotification, object: nil)

func refreshData() {
  // ...
}

但是这个视图控制器:

//View Controller B <-- Crash :(
NotificationCenter.default.addObserver(self, selector: #selector(loadEntries(search:)), name: .preferenceNotification, object: nil)

func loadEntries(search:String?) {
  // ...
}

...崩溃:

[NSConcreteNotification length]:发送到实例的无法识别的选择器

据我所知,我的观察者设置正确。 知道我做错了什么吗?

您的问题是您的loadEntries(search:)方法。 这不是有效的签名。 与Notification Center一起使用的选择器必须没有参数或只有一个参数。 如果您有一个参数,那么该参数将是Notification对象,而不是通知名称。

你的loadEntries需要是:

func loadEntries(_ notification: NSNotification) {
    // Optional check of the name
    if notification.name == .preferenceNotification {
    }
}

选择器需要是:

#selector(loadEntries(_:)) // or #selector(loadEntries)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM