I have a navi-like app, that plays notifications dependant on some location and time based actions.
The problem is that the notification sound must be combined from 2 or more files.
Normally it wouldn't be a problem since I'd combine audio and play it like it was suggested here.
Problems start when the app is moved to background. I was planing to use UILocalNotification in this case. Unfortunatelly, UILocalNotification only lets me to set soundName property as a name of file. Since the sound is combined out of couple of files, I can't provide such audio file name right?
What is the correct approach here? Can I use combined audio while app is in background?