LoginSignup
8
4

More than 5 years have passed since last update.

SwiftでTimer処理

Last updated at Posted at 2015-11-28

NSTimer.scheduledTimerWithTimeIntervalを使います

NSTimer.scheduledTimerWithTimeInterval(1.0, target: self, selector: "onTimer:", userInfo: nil, repeats: true)

func onTImer(sender:NSTimer) {
    print("on timer")
}

タイマーのハンドラに何か値を渡したい場合はuserInfoを使用します

NSTimer.scheduledTimerWithTimeInterval(1.0, target: self, selector: "onTimer:", userInfo: "Hello", repeats: true)

func onTImer(sender:NSTimer) {
    print("\(sender.userInfo as! String)")
}
8
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
4