Is it possible to customize the image of the clear button in a UITextField? I have a dark textfield background and the \"x\" is not visible enough.
UITextField
You can access that property using KVO:
UIButton *clearButton = [myTextField valueForKey:@"_clearButton"]; [clearButton setImage:[UIImage new] forState:UIControlStateNormal];