swift2.0 NSNotificationCenter 使用和传值

前端之家收集整理的这篇文章主要介绍了swift2.0 NSNotificationCenter 使用和传值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

发送通知

let dic = ["name":"hello"];
NSNotificationCenter.defaultCenter().postNotificationName("NotificationIdentifier",object: dic)

接收通知

NSNotificationCenter.defaultCenter().addObserver(self,selector: "getMyName:",name:"NotificationIdentifier",object: nil)

删除通知

NSNotificationCenter.defaultCenter().removeObserver(self,name: "NotificationIdentifier",object: nil)
NSNotificationCenter.defaultCenter().removeObserver(self)
func getMyName(notification:NSNotification){

        //获取词典中的值
        let name = notification.object?.valueForKey("name") as? String

        //通知名称
        let nameNotification = notification.name

        //notification.userInfo 接收object 对象 一些信息 例如入键盘的一些信息

        print(nameNotification)

        print(name);
    }
原文链接:https://www.f2er.com/swift/325778.html

猜你在找的Swift相关文章