What I am intended to do is that, I have one button which triggers two labels. Two labels are initially hidden. I wanted one to appear right away, and the other seconds later when the button is clicked.
What can I add to make this happen?
@IBOutlet var noDelayLabel: UILabel!
@IBOutlet var delayLabel: UILabel!
@IBAction func delayButton(_ sender: Any) {
noDelayLabel.isHidden = false
delayLabel.isHidden = false
}