I'm trying to change the text on a label in a simple iOS app.
The idea is to write a message in a textField and have it change the label once I press a button.
the objective-c code states the following:
[self.simpleLabel setText:message]
simpleLabel: is associated with the UILabel
setText:
is the method
message: is a variable set in a previous line
How would I write this in swift?
I tried combing through the Apple documentation but came up with nothing.