Swift中Notification.Name这么难用怎么办
点击上方“iOS开发”,选择“置顶公众号”
关键时刻,第一时间送达!
以前的发送通知的参数就是一个简单的字符串:
NSNotificationCenter.defaultCenter().post("someStringThatShouldBeDeclared")
后来到了swift 3 中,改成了Notification.Name。定义在Notification的命名空间下,是一个结构体,初始化函数接收一个字符串。
extension NSNotification {
public struct Name : RawRepresentable, Equatable, Hashable, Comparable {
public init(_ rawValue: String)
public init(rawValue: String)
}
}
用起来就麻烦了一点:
NotificationCenter.default.post(Notification.Name(rawValue: "MyNotificationName"))
如果还是按照以前的方式定义一个全局字符串常量就没有好好领会Swift精神了。
至少需要这样,通过extension声明一个静态的常量:
extension Notification.Name {
static let AccountBalanceUpdated = Notification.Name("accountBalanceUpdated")
}
// invocation
NotificationCenter.default.post(.AccountBalanceUpdated)
但是这种方式有一个小缺点,自定义的通知和系统的混在了一起,有时找起来比较尴尬。
这里其实也有另外一个问题,这种方式不能避免通知的名字重复。虽然如果命名规范不会有这样的问题,但是到底是个潜在的风险。
如果把上面两个问题合起来看,就有了另外一种方式:利用Enum。
先声明一个rawValue为字符串的枚举。为了规避命名的冲突,声明一个计算属性,在每个值的rawValue前插入一个字符串。再用这个字符串去生成NSNotification.Name:
enum CPNotification: String {
case userLogout
case userLogin
var stringValue: String {
return "CP" + rawValue
}
var notificationName: NSNotification.Name {
return NSNotification.Name(stringValue)
}
}
用起来就简单了,自己写一个扩展方法:
extension NotificationCenter {
static func post(customeNotification name: CPNotification, object: Any? = nil){
NotificationCenter.default.post(name: name.notificationName, object: object)
}
}
这样在使用时,直接点出来的就都是自定义的通知了。
当然在通知处理的地方也写个扩展方法用起来就更爽了,比如我用Rx所以这样写:
extension Reactive where Base: NotificationCenter {
func notification(custom name: CPNotification, object: AnyObject? = nil) -> Observable
{ return notification(name.notificationName, object: object)
}
}
用起来就是这样:
// 发送通知
NotificationCenter.post(customeNotification: .userLogout)
// 接收通知
let _ = NotificationCenter.default.rx.notification(custom: .userLogout).subscribe(onNext: { (value) in
CPNetworkConfig.userID = nil
})
作者:没故事的卓同学
链接:https://www.jianshu.com/p/105f6b133bd2
iOS开发整理发布,转载请联系作者授权
关注公众号:拾黑(shiheibook)了解更多
[广告]赞助链接:
四季很好,只要有你,文娱排行榜:https://www.yaopaiming.com/
让资讯触达的更精准有趣:https://www.0xu.cn/
随时掌握互联网精彩
- 1 习近平G20里约峰会展现大国担当 7996456
- 2 多国驻乌克兰大使馆因袭击风险关闭 7969339
- 3 78岁老太将减持2.5亿股股票 7899798
- 4 二十国集团里约峰会将会卓有成效 7749932
- 5 俄导弹击中乌水电站大坝 7691893
- 6 孙颖莎王艺迪不敌日本削球组合 7539772
- 7 高三女生酒后被强奸致死?检方回应 7462450
- 8 第一视角记录虎鲨吞下手机全程 7304931
- 9 中国一捕捉宇宙幽灵粒子装置建成 7244979
- 10 智慧乌镇点亮数字经济新未来 7125165