In my application I want to be able to vibrate for a few seconds to alert the user something is taking place.
I have used the following code:
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
And this works as in it will vibrate once.
However I want to be able to vibrate 5 times, not continuously or anything I just want to be able to vibrate once, stop, vibrate again, stop and so on, is this possible and acceptable by Apple via the app store?
That’s currently the only method you can cause the phone to vibrate. But you could call that function 5 times!