无法通过参数传递Timer.sheduledTimer

时间:2018-05-15 14:20:22

标签: ios swift nstimer

basicPidTimer = Timer.scheduledTimer(timeInterval: 1, target: self, selector: #selector(self.pidsUsage(indexPid:)), userInfo: pidsIndex, repeats: false)

//调用方法但是没有触发任何帮助?

@objc func pidsUsage(indexPid : Int){

}

1 个答案:

答案 0 :(得分:0)

参数必须是Timer类型。即。

@objc func pidsUsage(timer : Timer) {

}