0

To play vibration in iOS we use following :

AudioServicesPlaySystemSound(kSystemSoundID_Vibrate)

But is it possible to play custom vibration patterns in iOS8? I know Prior to iOS7 we could use following private API :

 void AudioServicesPlaySystemSoundWithVibration(SystemSoundID inSystemSoundID,id arg,NSDictionary* vibratePattern)

But is it possible to achieve in iOS8?

Chengappa C D
  • 1,841
  • 1
  • 12
  • 19

1 Answers1

0

This private API is no longer available.

Answering your question: There is no way to achieve this anymore in iOS 8/9.

NSPunk
  • 502
  • 4
  • 14