-2
我有這個代碼可以讓我的手機不斷振動。但1次振動後停止。我的計時器有問題嗎?我的計時器在一輪後停止
var timer: Timer?
@IBAction func button1(_ sender: UIButton) {
AudioServicesPlayAlertSound(kSystemSoundID_Vibrate)
timer?.invalidate()
timer = Timer.scheduledTimer(timeInterval: 0.1, target: self, selector: Selector(("doaction")), userInfo: nil, repeats: true)
}
我做錯了什麼?幫幫我?我也用swift使用xcode。並有一個iPhone 7加上,如果重要的話。
也是我的iphone死機一次,我斷開,並嘗試運行應用程序 –
秀請'doaction'方法。畢竟,這是計時器重複呼叫的內容。 – matt