在
Swift 3.0中使用El Capitan编码下的XCode 8 beta 6
试图将项目中的这些行从Swift 2.0转换为Swift 3.0
let userInfo = ["peer": peerID,"state": state.toRaw()] NSNotificationCenter.defaultCenter.postNotificationName("Blah",object: nil,userInfo: userInfo)
所以我设法凑齐了这个……
public class MyClass { static let myNotification = Notification.Name("Blah") } let userInfo = ["peerID":peerID,"state":state.rawValue] as [String : Any] NotificationCenter.default.post(name: MyClass.myNotification,object: userInfo)
它在我运行它时编译并发送通知并使用此行设置一个监听器,但没有userInfo我可以解码?
let notificationName = Notification.Name("Blah") NotificationCenter.default.addobserver(self,selector: #selector(peerChangedStateWithNotification),name: notificationName,object: nil)
此代码打印“nil”,因为没有userInfo …
func peerChangedStateWithNotification(notification:NSNotification) { print("\(notification.userInfo)") }
解决方法
正如@vadian所说,NotificationCenter有一个
post(name:object:userInfo :)可以使用的方法.
post(name:object:userInfo :)可以使用的方法.
这是一个独立的例子,它也演示了如何
将userInfo转换回预期类型的字典
(摘自https://forums.developer.apple.com/thread/61578):
class MyClass: NSObject { static let myNotification = Notification.Name("Blah") override init() { super.init() // Add observer: NotificationCenter.default.addobserver(self,selector: #selector(notificationCallback),name: MyClass.myNotification,object: nil) // Post notification: let userInfo = ["foo": 1,"bar": "baz"] as [String: Any] NotificationCenter.default.post(name: MyClass.myNotification,userInfo: userInfo) } func notificationCallback(notification: Notification) { if let userInfo = notification.userInfo as? [String: Any] { print(userInfo) } } } let obj = MyClass() // ["bar": baz,"foo": 1]
或者,您可以在中提取字典值
这样的回调(也来自Apple Developer Forum主题):
func notificationCallback(notification: Notification) { guard let userInfo = notification.userInfo else { return } if let foovalue = userInfo["foo"] as? Int { print("foo =",foovalue) } if let barValue = userInfo["bar"] as? String { print("bar =",barValue) } }
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。