本文介绍了如何在UITextView中取消选择文本?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
过了一会儿,我需要在UITextView中取消选择文本。
如何在UITextView中取消选择文本?
After some moment I need deselect text in UITextView.How do I deselect text in UITextView?
编辑:我需要以编程方式执行。
I need to do programmatically.
推荐答案
UITextView
采用 UITextInput
协议,其中包含 selectedTextRange
属性。将该属性设置为nil:
UITextView
adopts the UITextInput
protocol, which has a selectedTextRange
property. Set the property to nil:
self.textView.selectedTextRange = nil;
这篇关于如何在UITextView中取消选择文本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!