gpt4 book ai didi

ios - 在 IQKeyboardManager 中始终保持 View 在顶部(不要使用键盘滚动)

转载 作者:可可西里 更新时间:2023-11-01 00:58:14 25 4
gpt4 key购买 nike

我正在使用 IQKeyboardManager 使文本字段在使用键盘输入后保持上升。

即使单击文本字段,我也不想滚动到特定 View 。下面是设计的截图。我希望“标题”保持在顶部。

inspector layout for the view

来自他们的文档,there is a way to keep the navigation bar remain on top.

最佳答案

为您的 ViewController 禁用 IQKeyboardManager。

为此,

IQKeyboardManager.sharedManager().disableInViewControllerClass(ViewController.self)

然后在该 viewController 中编写以下代码。它会根据键盘高度向上移动您的 View

override func viewDidLoad() {
super.viewDidLoad()

NotificationCenter.default.addObserver(self, selector: #selector(ViewController.keyboardWillShow), name: NSNotification.Name.UIKeyboardWillShow, object: nil)
NotificationCenter.default.addObserver(self, selector: #selector(ViewController.keyboardWillHide), name: NSNotification.Name.UIKeyboardWillHide, object: nil)

}

func keyboardWillShow(notification: NSNotification) {

if let keyboardSize = (notification.userInfo?[UIKeyboardFrameBeginUserInfoKey] as? NSValue)?.cgRectValue {
if self.view.frame.origin.y == 0 {
self.view.frame.origin.y -= keyboardSize.height
}
}
}

func keyboardWillHide(notification: NSNotification) {
if let keyboardSize = (notification.userInfo?[UIKeyboardFrameBeginUserInfoKey] as? NSValue)?.cgRectValue {
if self.view.frame.origin.y != 0 {
self.view.frame.origin.y += keyboardSize.height
}
}
}

现在您希望您的“HEADER” View 保持在顶部,

这样做:

**

YourViewController.view -> [headerView][contentView]

**

textfield 放在 [contentView] 中,并在上面的代码中更改 [contentView].y 而不是 Self.view。

关于ios - 在 IQKeyboardManager 中始终保持 View 在顶部(不要使用键盘滚动),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40124131/

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