I already know how to change the text in label box by with a text field:
self.titleLabel.text = self.textField.text
How do I add static text to text that is being entered?
If in the textField
a name is entered, how do get the label box to display a "Hi," then whatever text that was entered?
What do I have to put in front of self.textField.text
after the "=" sign?