CosmicMind / Material

A UI/UX framework for creating beautiful applications.
http://cosmicmind.com
MIT License
11.99k stars 1.26k forks source link

TextField does't refresh detailLabel #1302

Open AD-Paladins opened 4 years ago

AD-Paladins commented 4 years ago

If you try to change the color and text in the textField.detailLabel.text, you won't see the change if you dont change the textField.text or focusing the field.

It occurs when the field is not focused and you change the detail text from code.

Pod version: Material 3.1.8 MaterialComponents 109.4.0

This is my workaround to resolve temporarily my problem:

    guard let lastChar = textField.text!.last else {
        textField.deleteBackward()
        return
    }
   textField.deleteBackward()
    textField.text = textField.text! + String(lastChar)

Have a good day. Best regards.