Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just want an application on ios that can play a sound (as an alarm) beyond the 10min mark (which is when an app is suspended after being backgrounded for that long).

Here is what I've done:

  1. Declared my app as Background running task using UIBackgroundModes with "audio" as the value

  2. Used beginBackgroundTaskWithExpirationHandler in applicationDidEnterBackground

  3. Used UILocalNotifications

  4. Set my AudioSessionCategory as kAudioSessionCategory_MediaPlayback

  5. Set my AudioSession as active

  6. I even tried the so called hack of playing a silent sound every 10seconds or so.

Now the alarm sound will go off while the app is muted, locked and in background when the UILocalNotification is fired which is fine and dandy. But the challenge is if an alarm is supposed to go off lets say 12mins from now and the app is backgrounded, then 10mins go by it gets suspended, then the 2mins will go by the UILocalNotification will fire but with no sound. Which essentially defeats the purpose of having an alarm app.

Can someone just please give me a straight forward answer and how do all the alarms out there do it? I just need an alarm that will go off with a SOUND 1 hr from now if not 1 day from now while the app is backgrounded.

share|improve this question
1  
Have you actually seen other apps do this? My experience with alarm apps have been exactly as you are describing, as a user I need to keep the app open otherwise, I miss my first meeting of the day. – Chris Wagner Jan 25 at 7:02
Hmmm.... Chris is right, but what if you schedule a push notification with a long sound. Is that possible? – MCKapur Jan 25 at 7:42
@Chris: I actually used 2 different alarms from the app store, where the alarm will go off if the app is not in the foreground. Once I get home I will list their names. – Ramroom Jan 25 at 16:16
@Rohan how long is long that would work? Keep in mind the longer the sound the bigger the size of your app becomes, and thats one thing I want to stay away from. – Ramroom Jan 25 at 16:18
Well, if your sound is like 10 seconds long it shouldnt be that long... right? – MCKapur Jan 25 at 16:24
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.