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?