在app开发过程中,需要使用到NSNotificationCenter传递数据
NSNotificationCenter.@H_301_19@defaultCenter().@H_301_19@addObserver(self,selector: "sendCMD:",name: "sendCMD",object: nil);
func sendCMD(obj: NSNotification)
{
let da:String? = obj.object as! String;// hello
// da就是数据,发送什么类型的数据 da就定义什么类型
}
注意移除通知
deinit {
NSNotificationCenter.defaultCenter().removeObserver(self);
}
第二部:发送通知
NSNotificationCenter.defaultCenter().postNotificationName("sendCMD",object:"hello")
原文链接:https://www.f2er.com/swift/321914.html