前言
本文主要介绍了关于Swift通知中心(NotificationCenter)使用的相关内容,NotificationCenter是Swift中一个调度消息通知的类,采用单例模式设计,实现传值、回调等作用。
通知的作用还是挺强大的,对于两个不相关的控制器之间,要进行信息的传递,使用通知是个不错的选择,下面话不多说了,来一起看看详细的使用方法吧。
1、添加通知
1
2
3
4
|
/// 通知名 let notificationName = "XMNotification" /// 自定义通知 NotificationCenter. default .addObserver(self, selector: #selector(notificationAction), name: NSNotification.Name(rawValue: notificationName), object: nil) |
2、设置监听方法
1
2
3
4
5
|
/// 接受到通知后的方法回调 @objc private func notificationAction(noti: Notification) { /// 获取键盘的位置/高度/时间间隔... print(noti) } |
3、在通知用完后及时销毁
1
2
3
4
5
|
/// 析构函数.类似于OC的 dealloc deinit { /// 移除通知 NotificationCenter. default .removeObserver(self) } |
4、发送通知
1
2
3
4
5
6
|
/// 发送简单数据 NotificationCenter. default .post(name: NSNotification.Name.init(rawValue: "XMNotification" ), object: "Hello 2017" ) /// 发送额外数据 let info = [ "name" : "Eric" , "age" :21] as [String : Any] NotificationCenter. default .post(name: NSNotification.Name.init(rawValue: "XMNotification" ), object: "GoodBye 2016" , userInfo: info) |
通知在系统中的运用,监听键盘的变动
1
2
|
/// 通知中心监听键盘的变化 #selector(notificationAction), name: NSNotification.Name.UIKeyboardWillChangeFrame, object: nil) |
有关键盘的其他通知名称
1
2
3
4
5
6
7
8
9
10
11
|
public static let UIKeyboardWillShow: NSNotification.Name /// 键盘显示完毕 public static let UIKeyboardDidShow: NSNotification.Name /// 键盘将要隐藏 public static let UIKeyboardWillHide: NSNotification.Name /// 键盘隐藏完毕 public static let UIKeyboardDidHide: NSNotification.Name /// 键盘将要改变自身的frame public static let UIKeyboardWillChangeFrame: NSNotification.Name /// 键盘frame改变完成 public static let UIKeyboardDidChangeFrame: NSNotification.Name |
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。
原文链接:http://blog.csdn.net/mazy_ma/article/details/54409837