I want to make custom alarm app which play sound from media library in iphone. Play sound on date selected by the user on interruption by the local notification.
I want app similar to app on app store
Thanks.
|
I want to make custom alarm app which play sound from media library in iphone. Play sound on date selected by the user on interruption by the local notification. I want app similar to app on app store Thanks. |
||||
|
|
|
Consider reading the iOS App Programming Guide -> App States and Multitasking: Read the following part: "Implementing Long-Running Background Tasks" and Playing Background Audio You can't do that with normal local notifications, as they have a limit of 30 seconds and you cannot let the user choose the file. You have to import it in your app bundle and include it in your code!!! I really think there is no other way then abusing the background audio playback system to keep your app running in the background, then present a local notification with no sound and play the sound out of a call in your background app with a system library (core audio etc...) |
|||||
|