我们可以让iPhone像Datepicker卷轴一样振动吗?

时间:2017-08-10 03:35:26

标签: ios cocoa-touch

使用Datepicker时,无论何时滚动日期,iPhone都会轻微振动。我知道我们可以  使用AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);进行正常振动。但是我们可以像Datepicker一样制造振动吗?

2 个答案:

答案 0 :(得分:2)

我相信您正在寻找UIFeedbackGenerator API。 https://developer.apple.com/documentation/uikit/uifeedbackgenerator

答案 1 :(得分:0)

夫特:

if #available(iOS 10.0, *) {
    let generator = UISelectionFeedbackGenerator()
    generator.selectionChanged()
}