I want to make an application which creates sound, music, or system sound when an iPhone is in silent mode. Is it possible to play any type of sound whether music or system tones when it is silent mode?
|
|
I did like this and works on iOS 6
|
|||
|
|
|
Just put this in your
|
|||
|
|
|
Yes you can play sound when the phone is set to vibrate. Simply use the AVAudioPlayer class.
This is what you want. So now you know that playing an Audio Session when your phone is in silent mode will still play the sound you just need to know how to create an audio session to play the sound, like so: taken from this website: http://iphonedevelopertips.com/audio/playing-short-sounds-audio-session-services.html
For this to work, you will need to import header file, and also add the AudioToolbox.framework to your project. And that's it. So from this answer you now know that you can play sound while the phone is on vibrate. You dont need extra or special code to allow you to do this functionality as it already does that by default. Do let me know if this helps. Pk |
|||||
|
|
It's not advisable, but who am I to say you can't do it. You may have a good reason to be playing sound. If you are using Audio Sessions, then include [[AVAudioSession sharedInstance]
setCategory: AVAudioSessionCategoryPlayback
error: nil];
should do the trick. Note if you play music or sounds, then iPod playback will be paused. Once this has been done, probably somewhere in the initialisation of one of your classes that plays the sounds, you can instanciate sounds like this: // probably an instance variable: AVAudioPlayer *player; NSString *path = [[NSBundle mainBundle] pathForResource...]; NSURL *url = [NSURL fileURLWithPath:path]; player = [[AVAudioPlayer alloc] initWithContentsOfURL:url]; When that's done, you can play with it any time you want with: [player play]; // Play the sound [player pause]; // Pause the sound halfway through playing player.currentTime += 10 // skip forward 10 seconds player.duration // Get the duration And other nice stuff. Look up the AVAudioPlayer Class reference. |
|||||||
|