使用Datepicker时,无论何时滚动日期,iPhone都会轻微振动。我知道我们可以
使用AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
进行正常振动。但是我们可以像Datepicker一样制造振动吗?
答案 0 :(得分:2)
我相信您正在寻找UIFeedbackGenerator
API。 https://developer.apple.com/documentation/uikit/uifeedbackgenerator
答案 1 :(得分:0)
夫特:
if #available(iOS 10.0, *) {
let generator = UISelectionFeedbackGenerator()
generator.selectionChanged()
}