I am attempting to learn Apple's Swift. I was recently trying to build a GUI app, but I have a question:
How do I interact with GUI elements of my app? For instance, I used interface builder to make a UILabel, and I connected it to my viewcontroller by control-clicking, so that I get the @IBOUTLET thing. Now, how do I, while in my view controller, edit the text of this UILabel? To state it another way, what code can I use to programatically control the text of something on my storyboard? All methods I have found online only appear to work with a button generated in code, not a button generated on a storyboard.
I've seen code like
self.simpleLabel.text = "message"
If this is right, how do I link it with the label in question? In other words, how do I adapt this code to be connected with the IBOutlet (If that's what I do)
To change the font or the size of a UILabel in a Storyboard or . XIB file, open it in the interface builder. Select the label and then open up the Attribute Inspector (CMD + Option + 5). Select the button on the font box and then you can change your text size or font.
You can omit UIControlState part and just write like button. setTitle("my text here", forState: . Normal) .
If you've successfully linked the control with an IBOutlet
on your UIViewController
class, then the property is added to it and you would simply replace simpleLabel with whatever you named your IBOutlet
connection to be like so:
class MyViewController: UIViewController { @IBOutlet weak var myLabel: UILabel! func someFunction() { self.myLabel.text = "text" } }
The outlet you created must've been named by you. The outlet belongs to your view controller. self.simpleLabel
means 'fetch the value of my property named 'simpleLabel'.
Since different outlets have different names, using self.simpleLabel
here won't work until your outlet is named 'simpleLabel'. Try replacing 'simpleLabel' with the name you gave to the outlet when you created it.
The correct way now would be:
self.yourLabelName.text = "message"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With