gpt4 book ai didi

ios - 快速键盘向上移动两次

转载 作者:行者123 更新时间:2023-11-29 01:37:53 29 4
gpt4 key购买 nike

我使用以下代码在键盘出现时向上移动 View 。这工作正常,但我有一个问题,如果我点击一个文本字段并直接点击下一个文本字段,它会将我的 View 向上移动两次。
我怎样才能让它只向上移动一次 View ?

NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("keyboardWillShow:"), name: UIKeyboardWillShowNotification, object: nil)
NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("keyboardWillHide:"), name: UIKeyboardWillHideNotification, object: nil)

func keyboardWillShow(notification: NSNotification) {
print(self.view.frame.origin.y)


if let keyboardSize = (notification.userInfo?[UIKeyboardFrameBeginUserInfoKey] as? NSValue)?.CGRectValue() {

self.view.frame.origin.y -= keyboardSize.height

}

print(self.view.frame.origin.y)
}

func keyboardWillHide(notification: NSNotification) {
print("is dissapaering now")
if let keyboardSize = (notification.userInfo?[UIKeyboardFrameBeginUserInfoKey] as? NSValue)?.CGRectValue() {

self.view.frame.origin.y += keyboardSize.height
}
}

最佳答案

听起来您应该在再次显示之前检查键盘是否已经显示。创建一个新的 Bool 变量来跟踪状态,并且仅在 Bool 值为 false 时才移动 View 。

关于ios - 快速键盘向上移动两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32769327/

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