Is it possible to control the volume of my local notifications from my app?
cocoa-touch, objective-c, uilocalnotification
Solution
Use different sound files for different volume. For example five files alarm1.aiff, alarm2.aiff ... alarm5.aiff. User select a volume (1 to 5) level in your app's preferences and then the notification will use the corresponding file.
That way is the same as using options to select alarm sound. But only varying volume.
Problem
I have an app that notify my user periodically using repeat intervals. Now my app users are asking me to allow them to control the volume of the notification differently from others. (Mostly lower than the current level of the device). I was wondering if there is a way to do that?