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的键盘观察器不起作用所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)