我有代码发送通知(其中serialNumber是一个字符串):
var dataDict = Dictionary<String,String>() dataDict["Identity"] = serialNumber dataDict["Direction"] = "Add" NSNotificationCenter.defaultCenter().postNotificationName("deviceActivity",object:self,userInfo:dataDict)
func deviceActivity(notification: NSNotification) { // This method is invoked when the notification is sent // The problem is in how to access the Dictionary and pull out the entries }
我试过了各种代码来实现这一点,没有成功:
let dict = notification.userInfo let dict: Dictionary<String,String> = notification.userInfo let dict: Dictionary = notification.userInfo as Dictionary
虽然我的一些尝试满足编译器,没有一个产生实际的字符串时,试图访问已提取的字典:
let sn : String = dict["Identity"]! let sn : String = dict.valueForKey("Identity") as String let sn : String = dict.valueForKey("Identity")
所以问题是这样:我如何写Swift代码提取一个对象,在这种情况下一个字典,通过通知,并访问该对象的组件部分(在这种情况下的键和值)?
由于notification.userInfo类型是AnyObject,因此您必须将其下转换为适当的字典类型。
原文链接:https://www.f2er.com/swift/320907.html在知道确切类型的字典后,你不需要从它得到的downcast值。但是,在使用它们之前,您可能想要检查值是否实际存在于字典中:
// First try to cast user info to expected type if let info = notification.userInfo as? Dictionary<String,String> { // Check if value present before using it if let s = info["Direction"] { print(s) } else { print("no value for key\n") } } else { print("wrong userInfo type") }