In my app I want to have an alarm/notification on "Ringer & Alert Volume" level.
In other words on the volume level which phone rings or alarms are used on (Preferences/Sound/Ringer and Alerts). It is different from the system volume level which changes with the volume buttons.
It should also play more than 30 sec.
I know it's possible because some clock apps can do that.
UPDATE: OK I found an unideal solution. If use AudioServicesCreateSystemSoundID and load my own sound file (aif, wav, etc no mp3 or other compressed audio) than it works. The only problem is that it has to be 30 sec or shorter, but I can can cut it into 30sec pieces and play them piece by piece.
It does not work when on silent switch on which is a problem for me.
Code:
SystemSoundID mySound;
AudioServicesCreateSystemSoundID(CFBundleCopyResourceURL(CFBundleGetMainBundle(), CFSTR("mySound"), CFSTR("aif"), NULL), &mySound);
AudioServicesPlaySystemSound(mySound);
I suspect that OpenAL should do that. Does anyone has a simple example which loads a aif/wav file and plays it on iPhone. I found some complicated examples, but all I need is just play and stop a sound (even if it's leaking that's fine).