ObjC1 Swift 주기별로 함수 실행하기( 타이머 ) 클로저를 통한 타이머 실행방법 let timer = Timer.scheduledTimer(withTimeInterval: 1.0, repeats: true) { timer in print("timer") } 타이머를 등록하여 사용 하는 방법 Timer.scheduledTimer(timeInterval: 1.0, target: self, selector: #selector(timerFunc), userInfo: nil, repeats: true) @objc func timerFunc() { print("timer") } timeInterval를 수정하여 시간을 조절합니다. 2021. 12. 16. 이전 1 다음