@IBAction func startClicked(_ sender: Any) {
if timer.isValid {
return
} else {
startTimer()
}
}
@IBAction func stopClicked(_ sender: Any) {
stopTimer()
}
func startTimer() {
timer = Timer.scheduledTimer(timeInterval: 5.0, target: self, selector: #selector(updateTableView), userInfo: nil, repeats: true)
}
func stopTimer() {
timer.invalidate()
}
-
Notifications
You must be signed in to change notification settings - Fork 0
chandananand/AutoAddTableCell
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
