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:
Declared my app as Background running task using
UIBackgroundModeswith "audio" as the valueUsed
beginBackgroundTaskWithExpirationHandlerinapplicationDidEnterBackgroundUsed
UILocalNotificationsSet my
AudioSessionCategoryaskAudioSessionCategory_MediaPlaybackSet my
AudioSessionas activeI 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.