본문 바로가기
IOS

Swift 주기별로 함수 실행하기( 타이머 )

by 일용직 코딩노동자 2021. 12. 16.
728x90
반응형

클로저를 통한 타이머 실행방법 

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를 수정하여 시간을 조절합니다.

728x90
반응형

댓글