Services. The vibrate option is identified using the kSystemSoundID_Vibrate identifier. To trigger
it, use the AudioServicesPlaySystemSound function in the Audio Toolbox framework, as shown
here.
#import <AudioToolbox/AudioToolbox.h>
#import <UIKit/UIKit.h>
- (void)vibratePhone
{
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
}

