반응형 Timer1 [iOS] Timer, 특정 함수 반복 실행하기 timeInterval에 원하는 시간(초), #selector에 반복할 함수를 입력한다. Timer.scheduledTimer(timeInterval: 1.0, target: self, selector: #selector(testFunc), userInfo: nil, repeats: true) 반복할 함수를 작성한다. @objc func testFunc(){ print("반복한다.") } 2021. 2. 10. 이전 1 다음 반응형