I am trying to dynamically change a label value in ApplicationModel dynamically while my program is running. I tried:
(self builder labelAt: #Label4) labelString: 'Dynamic text here'.
But labelString did not understand to get an error. When I run:
(self builder labelAt:#Label4)
I get "UndefinedObject". Obviously, I am not returning a Label object.
source
share