I\'m writing a reminders app for iPhone that displays reminders using local notifications.
If a reminder goes off while the application is running, the local notific
You can play the default notification sound in this way:
AudioServicesPlaySystemSound(1315);
Here you'll find the list of the ids you can use as parameter of AudioServicesPlaySystemSound(id).
Good coding!