gpt4 book ai didi

Swift中通知中心(NotificationCenter)的使用示例

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 27 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Swift中通知中心(NotificationCenter)的使用示例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

前言 。

本文主要介绍了关于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 。

最后此篇关于Swift中通知中心(NotificationCenter)的使用示例的文章就讲到这里了,如果你想了解更多关于Swift中通知中心(NotificationCenter)的使用示例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com