Custom UITextField clear button

前端 未结 7 743
渐次进展
渐次进展 2021-01-31 08:16

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.

7条回答
  •  -上瘾入骨i
    2021-01-31 09:08

    Tested iOS7.0 - 8.4

    It is possible to update the backgroundImage of all clear buttons using the following UIAppearance method. Unfortunately you cannot update the image of the button:

    UIButton *defaultClearButton = [UIButton appearanceWhenContainedIn:[UITextField class], nil];
    [defaultClearButton setBackgroundImage:[UIImage imageNamed:@"clearButtonBkg1.png"] forState:UIControlStateNormal];
    

    Using the following images, this results in the following clear button:

    White background image @3x:

    Note: This will update the background image of ALL buttons contained in textfields

提交回复
热议问题