gpt4 book ai didi

ios - UITextView 完成按钮操作 - 返回键

转载 作者:行者123 更新时间:2023-12-01 15:55:48 27 4
gpt4 key购买 nike

使用 UITextView,您如何知道何时在键盘上按下了“完成”或其他按钮?

我是否需要查看 textViewDidChange 中的每个字符,如果需要,要查找什么?

IB 选择的 UITextView:

enter image description here

最佳答案

我刚刚测试过这个。似乎可以满足您的要求:

class ViewController: UIViewController, UITextViewDelegate {
@IBOutlet weak var myTextView: UITextView!

override func viewDidLoad() {
super.viewDidLoad()
myTextView.delegate = self
}

func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool
{
if(text == "\n")
{
view.endEditing(true)
return false
}
else
{
return true
}
}
}

关于ios - UITextView 完成按钮操作 - 返回键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46228718/

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