I've followed the instructions here and succesfully set up a UITextField that gets updated with a UIDatePicker. However the cursor in the UITextField is blinking, which seems quite a bit awkward to me. Is there any solution to get rid of that cursor?
|
I couldn't get jcm's solution to work. What I ended up doing was to subclass UILabel to mimic a UITextField's interactive functionality without the parts that I didn't want (like the cursor). I wrote a blog post about it here: http://pietrorea.com/2012/07/how-to-hide-the-cursor-in-a-uitextfield/ Basically, the UILabel subclass needs to overwrite isUserInteractionEnabled, inputView, inputViewAccessory and canBecomeFirstResponder. It's only a few lines of code and it makes more sense. |
|||||
|
|
What I did was to overlay another UITextField on top of the one whose cursor I wanted to hide. Then in the delegate method textFieldShouldBeginEditing I set the other textField to become first responder and returned NO.
And then in the method the date picker calls:
In Interface Builder otherField (the one with the datePicker input view) is behind dummyField (the one that hides the cursor). |
|||
|
|
|
Subclass UITextfield and Override the
|
||||
|
I found this solution to be the easiest to implement. Make sure you define UITextFieldDelegate in your .h file:
In your .m file, add this to the method you call fo the date picker:
This will prevent the textfield from blinking. |
|||
|
|
