Is there way to disable blinking cursor in UITextField? Probably messing with UITextInput protocol? Thanks for any help!
UITextField disable cursor
405 views Asked by Piotr At
2
There are 2 answers
0
On
This is old and you found a new solution. But there are an idea you can use. I thing the cursor is a image animation, so you can found their view.
Run thought all views with
for (id subview in myTextField.subviews) {
if (is cursor view){
subview.hidden = TRUE;
}
}
Maybe this can work, but it is trial and error.
A much cleaner way to do it would be to set the tint color to clear as follows:
textField.tintColor = .clear