如何禁用用户在 UITextField 或 UITextView 中 select 文本的能力?

How to disable a user's ability to select text in a UITextField or UITextView?

如何禁用 UITextFieldUITextView 中的文本突出显示?我来自 Web 开发背景,我知道它可以在 CSS 中使用以下方法实现:

-webkit-touch-callout:none;
-webkit-user-select:none;
-webkit-tap-highlight-color:rgba(0,0,0,0);

这在 iOS 中可行吗?

最快的方法是在 UITextViewUITextField

上将 .isUserInteractionEnabled 设置为 false