How do I disable text highlighting in a UITextField
or UITextView
? I come from a web development background and I know it can be achieved in CSS using the following:
-webkit-touch-callout:none;
-webkit-user-select:none;
-webkit-tap-highlight-color:rgba(0,0,0,0);
Is this possible in iOS?