gpt4 book ai didi

ios - Swift 中的 ScrollView 和键盘

转载 作者:IT王子 更新时间:2023-10-29 05:00:47 25 4
gpt4 key购买 nike

我开始创建一个简单的 iOS 应用程序来执行一些操作。

但是当键盘出现时我遇到了一些问题,隐藏了我的文本字段之一。

我认为这是一个常见问题,我做了一些研究,但找不到任何解决我问题的方法。

我想使用 ScrollView 而不是为文本字段设置动画以使其可见。

最佳答案

在 ViewDidLoad 中,注册通知:

NotificationCenter.default.addObserver(self, selector: #selector(keyboardWillShow), name:UIResponder.keyboardWillShowNotification, object: nil)
NotificationCenter.default.addObserver(self, selector: #selector(keyboardWillHide), name:UIResponder.keyboardWillHideNotification, object: nil)

添加下面的观察者方法,当键盘出现时自动滚动。

@objc func keyboardWillShow(notification:NSNotification) {

guard let userInfo = notification.userInfo else { return }
var keyboardFrame:CGRect = (userInfo[UIResponder.keyboardFrameBeginUserInfoKey] as! NSValue).cgRectValue
keyboardFrame = self.view.convert(keyboardFrame, from: nil)

var contentInset:UIEdgeInsets = self.scrollView.contentInset
contentInset.bottom = keyboardFrame.size.height + 20
scrollView.contentInset = contentInset
}

@objc func keyboardWillHide(notification:NSNotification) {

let contentInset:UIEdgeInsets = UIEdgeInsets.zero
scrollView.contentInset = contentInset
}

关于ios - Swift 中的 ScrollView 和键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26689232/

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