如何在Swift中的UITextView中检测退格。
我见过很多关于UITextField的解决方案,但找不到任何关于UITextView的解决方案
答案 0 :(得分:0)
UITextViewDelegate
方法将帮助您检测退格
func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool {
if text == "" && range.length > 0 { //Backspace
}
return true
}