Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

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.

share|improve this answer
Great solution! – cirroz Dec 20 '12 at 11:34
i recently added your PRLabel class in my project.. but i dont know what i did wrong, it is seriously messing upp with the tableview index ... i think when the picker view is shown, the tableview is scrolled but visually not updated ... i have a PRLabel in section 1 .. i touch it , picker view shows then when i touch a cell in section 0 it is interpreting as section 1 .. – raw3d Apr 18 at 11:55

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.

-(BOOL)textFieldShouldBeginEditing:(UITextField *)textField {
    if (textField.tag==TAG_OF_DUMMY_TEXTFIELD) {
        [otherField becomeFirstResponder];
        return NO;
    }
    return YES;
}

And then in the method the date picker calls:

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@YOUR_DATE_FORMAT];
dummyField.text = [dateFormatter stringFromDate:datePicker.date];

In Interface Builder otherField (the one with the datePicker input view) is behind dummyField (the one that hides the cursor).

share|improve this answer
Care to explain the downvote? – jcm Mar 27 at 14:57

Subclass UITextfield and Override the - (CGRect)caretRectForPosition:(UITextPosition *)position method and return CGRectZero.

- (CGRect)caretRectForPosition:(UITextPosition *)position {
    return CGRectZero;
}
share|improve this answer
This one really did the great job.. – R.A Mar 25 at 13:29
It's not working with iOS 4.3. UITextInput Protocol adapted only iOS 5 and above. – R.A Mar 29 at 6:30

I found this solution to be the easiest to implement.

Make sure you define UITextFieldDelegate in your .h file:

.... UIViewController <UITextFieldDelegate>

In your .m file, add this to the method you call fo the date picker:

[yourTextField resignFirstResponder];

This will prevent the textfield from blinking.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.