使手机在UIButton上振动单击

时间:2018-12-20 15:25:59

标签: swift iphone-vibrate

我试图用以下代码行在UIButton的单击上实现振动功能:

import AudioToolbox

AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))

但是什么也没发生。如果有人对此有经验,请检查问题。

1 个答案:

答案 0 :(得分:0)

如果设备支持(例如iPhone),最好使用触觉反馈。

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