Search code examples
iphonecocoa-touchiosuitextfielduitextviewdelegate

highlighting the text inside the textfield


I want the text inside the textfield to be highlighted when I tap on it.

I want the original text to be deleted the moment someone tap on the numberpad. I tried using clearButtonMode but then since my textfield size is very small the cross icon fully occupy the textfield.

Any idea how to achieve this?


Solution

  • This can be achieved by

    (void)textFieldDidBeginEditing:(UITextField *)iTextField {
        [iTextField selectAll:self];
    }