swift – 没有用Objective-C Selector声明的方法用于通知UIKeyboardWillShowNotification和UIKeyboardWillHideNotification

swift – 没有用Objective-C Selector声明的方法用于通知UIKeyboardWillShowNotification和UIKeyboardWillHideNotification,第1张

概述在最近更新 Xcode之后,以前工作的代码不再有效.大多数选择器(“:”)都有自动更正,但此代码除外: override func viewDidLoad() { super.viewDidLoad() NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("keyboardWillSh 在最近更新 Xcode之后,以前工作的代码不再有效.大多数选择器(“:”)都有自动更正,但此代码除外:

overrIDe func vIEwDIDLoad() {    super.vIEwDIDLoad()    NSNotificationCenter.defaultCenter().addobserver(self,selector: Selector("keyboarDWillShow:"),name:UIKeyboarDWillShowNotification,object: nil);    NSNotificationCenter.defaultCenter().addobserver(self,selector: Selector("keyboarDWillHIDe:"),name:UIKeyboarDWillHIDeNotification,object: nil);}

标记错误:

No method declared with Objective C selector ‘keyboarDWillSHow:’

此图像显示了所有失败的尝试.

这段代码的新语法是什么?

解决方法 分配选择器如下:

NSNotificationCenter.defaultCenter().addobserver(self,selector: #selector(YourClassname.keyboarDWillShow(_:)),object: nil);

以及更新所需内容的方法

func keyboarDWillShow(notification: NSNotification) {     //Update UI or Do Something}

您可以采用与UIKeyboarDWillHIDeNotification相同的方式.

总结

以上是内存溢出为你收集整理的swift – 没有用Objective-C Selector声明的方法用于通知UIKeyboardWillShowNotification和UIKeyboardWillHideNotification全部内容,希望文章能够帮你解决swift – 没有用Objective-C Selector声明的方法用于通知UIKeyboardWillShowNotification和UIKeyboardWillHideNotification所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存