Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can the iPhone be set to vibrate once?

For example, when a player loses a life or the game is over, the iPhone should vibrate.

share|improve this question
1  
possible duplicate of [programmatically make iphone vibrate. ](stackoverflow.com/questions/2080442/…) – Vladimir Jan 18 '11 at 14:08
Tried to search stackoverflow.com/search?q=iphone+vibrate ;) – Vladimir Jan 18 '11 at 14:09
Another search keyword could be "Shake Gesture" – Irene Jan 18 '11 at 14:10
5  
Shake gesture is completely different than vibration. One is human-initiated, one device-initiated. – Eiko Jan 18 '11 at 14:15

2 Answers

up vote 119 down vote accepted

There are two seemingly similar functions that take a parameter kSystemSoundID_Vibrate:

1) AudioServicesPlayAlertSound(kSystemSoundID_Vibrate);
2) AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);

Both the functions vibrate the iPhone. But when you use the first function on devices that don’t support vibration, it plays a beep sound. The second function on the other hand does nothing on unsupported devices. So if you are going to vibrate the device continuously, as a alert, common sense says, use function 2.

See also "iPhone Tutorial: Better way to check capabilities of iOS devices" article.

First, add the AudioToolbox framework (AudioToolbox.framework) to your target in Build Phases.

Then, header file to import:

#import <AudioToolbox/AudioServices.h>
share|improve this answer
1  
Thanks. What do I import? – Helium3 Jan 18 '11 at 14:15
1  
#import <Cocoa/Cocoa.h> is not required. – Shivan Raptor Sep 30 '11 at 4:33
1  
I took the liberty of removing that line... – Hackmodford Jan 11 '12 at 17:50
7  
You also need to add the AudioToolbox.framework – DenVog Apr 11 '12 at 14:07
2  
I would like to add, that if vibration is off in Settings of iOS, user will not get vibration even if you use these commands. – wzbozon Mar 7 at 14:10
show 3 more comments

A simple way to do so is with Audio Services:

 AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
share|improve this answer
Thanks. What is the import? – Helium3 Jan 18 '11 at 14:12
1  
documentation ;) – Elias Atahi Mar 26 at 15:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.