gpt4 book ai didi

ios - 在 Swift 中无限期振动

转载 作者:行者123 更新时间:2023-11-28 07:38:35 37 4
gpt4 key购买 nike

如何让 iPhone 无限振动?我知道我可以做到这一点:

while true {
AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))
}

有没有什么办法可以让震动播放一定秒数,或者类似效果更干净的东西?还有,有没有什么办法可以让振动更剧烈一些?

最佳答案

我认为你应该使用Timer

var timer: Timer?
var numberRepeat = 0
var maxNumberRepeat = 20

func startTimer() {
//
timer = Timer.scheduledTimer(timeInterval: 2, target: self, selector: #selector(self.timerHandler), userInfo: nil, repeats: true)
}

func stopTimer() {
timer?.invalidate()
timer = nil
}

@objc func timerHandler() {
if numberRepeat <= maxNumberRepeat {
numberRepeat += 1
vibrateDevice()
} else {
stopTimer()
}
}

func vibrateDevice() {
AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))
}

关于ios - 在 Swift 中无限期振动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52826994/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com