Nantes
Nantes copied to clipboard
Label UI doesn't update after setting text property
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 ?