美文网首页
swift 广播

swift 广播

作者: 旅途开发者 | 来源:发表于2016-12-12 17:01 被阅读135次

    //设置广播 

    let noT = NSNotification.Name(rawValue: "NotFicationName")

    let dic = ["key":"value"]

    NotificationCenter.default.post(name: noT, object: nil, userInfo:dic)

    //创建广播中心接收广播

    let name1 = NSNotification.Name(rawValue:"NotFicationName")

    NotificationCenter.default.addObserver(self, selector: #selector(BaseOneController.notfifica(sender:)), name: name1, object: nil)

    func notfifica(sender:NSNotification) {

                 print("接收广播成功")

                  let dic = sender.userInfo

                  let va = dic?["key"]

                  print("\(va)")

    }

    相关文章

      网友评论

          本文标题:swift 广播

          本文链接:https://www.haomeiwen.com/subject/qqnmmttx.html