首页 > 编程语言 > 详细

通过 RxSwift 优雅使用 NotificationCenter

时间:2019-05-24 00:46:07      阅读:297      评论:0      收藏:0      [点我收藏+]

原文

纯粹的官方代码使用NotificationCenter真的很难用,但是有了RxSwift,就变得方便了很多。

修改 Podfile,通过pod引入RxSwift
  pod 'RxSwift'
  pod 'RxCocoa'
通过 RxSwift 注册监听器
import RxSwift
import RxCocoa

let notificationName = Notification.Name("UploadStatus")
NotificationCenter.default.rx.notification(notificationName).subscribe(onNext: { notification in
    if(notification.object != nil){
        print("上传状态:\(notification.object!)")
    }
    if(notification.userInfo != nil){
        print("参数:\(notification.userInfo!)")
    }
})
发送通知
let notificationName = Notification.Name("UploadStatus")
NotificationCenter.default.post(name: notificationName, object: "上传失败")

NotificationCenter.default.post(name: notificationName, object: nil, userInfo: ["param1":"Wiki","param2":18])

通过 RxSwift 优雅使用 NotificationCenter

原文:https://www.cnblogs.com/taoweiji/p/10915527.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!