I know this is what we use to make the device vibrate:
#import <AudioToolbox/AudioToolbox.h>
AudioServicesPlaySystemSound (kSystemSoundID_Vibrate);
But how do I stop the vibration? I mean, I want a switch which activates or deactivates the vibration.
How do I do that?