Hi I am not sure how to do auto call a click-function for an @IBAction in Swift.
Say, I have a timer function, when countdown is finished, I need to call the Click-funct
Do the same thing as @Moritz said but instead
@IBAction func doSomeTask(sender: UIButton? = nil) {
// code
}
so that way, you do something like:
`doSomeTask()`
which is saying the same thing as saying
`doSomeTask(sender:nil)
or pass an UIButton object if you so wish so.
doSomeTask(sender:SomeUIButton)