Nantes icon indicating copy to clipboard operation
Nantes copied to clipboard

Label UI doesn't update after setting text property

Open Bathant opened this issue 3 years ago • 0 comments

Hello 👋, First of all, thank you for your library. I wanted to ask why the label textColor/font doesn't change after setting text property. for example:

// this will work ✅               // this will not work ❌

label.textColor = .red                label.text = "test"
label.text  = "test"                  label.textColor = .red

Is there a function to update the label UI ?

Bathant avatar Nov 08 '21 11:11 Bathant