gpt4 book ai didi

ios - 当我点击一个按钮时,如何让我的 iPhone 振动两次?

转载 作者:搜寻专家 更新时间:2023-10-31 21:49:40 25 4
gpt4 key购买 nike

当我点击一个按钮时,我搜索让我的 iPhone 振动两次(比如短信提醒振动)

使用 AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))我只获得了一次正常振动,但我想要两条短裤:/。

最佳答案

iOS 10 更新

在 iOS 10 中,有一些新的方法可以用最少的代码来做到这一点。

方法 1 - UIImpactFeedbackGenerator :

let feedbackGenerator = UIImpactFeedbackGenerator(style: .heavy)
feedbackGenerator.impactOccurred()

方法 2 - UINotificationFeedbackGenerator :

let feedbackGenerator = UINotificationFeedbackGenerator()
feedbackGenerator.notificationOccurred(.error)

方法 3 - UISelectionFeedbackGenerator :

let feedbackGenerator = UISelectionFeedbackGenerator()
feedbackGenerator.selectionChanged()

关于ios - 当我点击一个按钮时,如何让我的 iPhone 振动两次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29839069/

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