Swift/개념 (1) 썸네일형 리스트형 Timer, Countdown 타이머를 구현하고 싶을때는 Timer를 사용하면 된다. timer.invalidate() timer = Timer.scheduledTimer(timeInterval: 1.0, target: self, selector: #selector(updateCounter), userInfo: nil, repeats: true) @objc func updateCounter() { //example functionality if counter > 0 { print("\(counter) seconds to the end of the world") counter -= 1 } else { timer.invalidate() titleLabel.text = "Done!" } } 한개의 타이머만 작동시키기 위해서는 invalid.. 이전 1 다음