UITextField clearButtonMode color

前端 未结 5 577
甜味超标
甜味超标 2020-12-09 10:27

can I change the color of the clearButtonMode on a textField?

theTextField.clearButtonMode = UITextFieldViewModeWhileEditing

shows an x tha

5条回答
  •  余生分开走
    2020-12-09 10:57

    At the time you're configuring the textField, use:

    let clearButton : UIButton = textField.value(forKey: "_clearButton") as! UIButton
    let image = UIImage(named: "ClearWhite")
    
    clearButton.setImage(image, for: .normal)
    clearButton.backgroundColor = UIColor.clear
    

提交回复
热议问题