ios – Swift:通过NSNotificationCenter的键盘观察器不起作用

ios – Swift:通过NSNotificationCenter的键盘观察器不起作用,第1张

概述我正在尝试在我的iOS 8 Swift应用程序中实现一个简单的键盘观察器,但它确实不起作用.这是我目前正在使用的代码: override func viewDidAppear(animated: Bool) { NSNotificationCenter().addObserver(self, selector: Selector(keyboardWillAppear()), name: U 我正在尝试在我的iOS 8 Swift应用程序中实现一个简单的键盘观察器,但它确实不起作用.这是我目前正在使用的代码:

overrIDe func vIEwDIDAppear(animated: Bool) {    NSNotificationCenter().addobserver(self,selector: Selector(keyboarDWillAppear()),name: UIKeyboarDWillShowNotification,object: nil)    NSNotificationCenter().addobserver(self,selector: Selector(keyboarDWillHIDe()),name: UIKeyboarDWillHIDeNotification,object: nil)}overrIDe func vIEwDIDdisappear(animated: Bool) {    NSNotificationCenter().removeObserver(self)}func keyboarDWillAppear() {    logoHeightConstraint.constant = 128.0}func keyboarDWillHIDe() {    logoHeightConstraint.constant = 256.0}

奇怪的是,在启动应用程序后,两个对键盘作出反应的功能都会被调用.当我进入或离开文本字段时没有任何反应.我究竟做错了什么?顺便说一下:改变约束是改变图像大小的最佳解决方案吗?

我真的很感谢你的帮助!

解决方法 每次调用NSNotificationCenter时,调用NSNotificationCenter()都会实例化一个新的NSNotificationCenter.请尝试使用NSNotificationCenter.defaultCenter(). 总结

以上是内存溢出为你收集整理的ios – Swift:通过NSNotificationCenter的键盘观察器不起作用全部内容,希望文章能够帮你解决ios – Swift:通过NSNotificationCenter的键盘观察器不起作用所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1036372.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存