I implemented local notification in my app but I am just wondering is there a way to play a sound that is not part of the main bundle of iPhone App. Basically in my app, I want user to record a sound that gets played when the local notification is generated instead of playing a pre-recorded or default sound. As far as i know this can be implementable because i have seen 2-3 App in app store which is doing the same thing which i want to do

- (void)alertSelector:(NSString *)AlertTitle WithFiringTime:(NSDate *)date
{ 

UILocalNotification *localNotification = [[[UILocalNotification alloc] init] autorelease];
   [localNotification setFireDate:date];
   [localNotification setTimeZone:[NSTimeZone defaultTimeZone]];
   NSDictionary *data = [NSDictionary dictionaryWithObject:date forKey:@"payload"];       
   [localNotification setUserInfo:data];[localNotification setAlertBody:AlertTitle];   
   [localNotification setAlertAction:@"View"]; [localNotification setHasAction:YES]; 
   localNotification.soundName=@"voice.aif"; 

   if (!localNotification)
          return;

    [[UIApplication sharedApplication] scheduleLocalNotification:localNotification]; 
}
link|improve this question

56% accept rate
Could you link to one of the apps that's doing this? Thanks. – Art Gillespie Feb 3 at 19:31
@ArtGillespie Here is the one of many apps that allows to set recorded sound for UILocalNotification. itunes.apple.com/in/app/record-alarm-free/id418511936?mt=8 – Guru Feb 8 at 5:20
feedback

3 Answers

My guess is your sound isn't formatted appropriately to play by the OS. Make sure your sound is formatted in IMA4 format. Also, make sure your file is in your application bundle, and you should be good to go.

For more reference and similar question, see this SO question.

Choose custom sound for Local Notifications

Here is a link for Apple's Local and Push Notification Guide. It explains the sounds in detail and the default sounds that can be used.

link|improve this answer
Any code for playing the recorded sound from "Documents" directory for UILocalNotification as asked? – Guru Feb 3 at 19:34
I believe you just need to replace the name of your sound with UILocalNotificaionDefaultSoundName – Bill Burgess Feb 3 at 19:37
I have updated my answer with another link to Apple documentation that should help you. – Bill Burgess Feb 3 at 19:40
As it's been mentioned in question "Basically in my app, I want user to record a sound that gets played when the local notification is generated instead of playing a pre-recorded or default sound. As far as i know this can be implementable because i have seen 2-3 App in app store which is doing the same thing which i want to do" The pages you mentioned, doesn't have any example of setting the recorded sound. Since a few of apps do that hence we are sure there must be a work around. – Guru Feb 3 at 19:42
Some good information here. tuaw.com/2007/08/06/iphone-coding-recording-audio – Bill Burgess Feb 3 at 20:22
show 1 more comment
feedback

From the description of the soundName property -

For this property, specify the filename (including extension) of a sound resource in the application’s main bundle or UILocalNotificationDefaultSoundName to request the default system sound.

It doesn't seem that sounds other than those present in the bundle can be used. Are you sure that the apps are using local notifications with their custom sounds? Maybe they are playing sounds with alerts or something like that.

HTH,

Akshay

link|improve this answer
Hi Akshay Thank you for your response , yeah i am sure they are using UIlocalnotification should i give u the links of those App? They are free App and doing the the same thing which i want to do. I think stack overflow would not allow the sharing of those link ? – Muhammad Saqib Aug 20 '11 at 4:17
Are you scheduling the notification or displaying it immediately? – Akshay Aug 21 '11 at 13:03
I am scheduling it using NSLocalnotification. – Muhammad Saqib Aug 22 '11 at 5:04
Can you add the code you are using to display the notifications? – Akshay Aug 22 '11 at 8:21
- (void)alertSelector:(NSString *)AlertTitle WithFiringTime:(NSDate *)date{ UILocalNotification *localNotification = [[[UILocalNotification alloc] init] autorelease];[localNotification setFireDate:date]; [localNotification setTimeZone:[NSTimeZone defaultTimeZone]];NSDictionary *data = [NSDictionary dictionaryWithObject:date forKey:@"payload"]; [localNotification setUserInfo:data];[localNotification setAlertBody:AlertTitle]; [localNotification setAlertAction:@"View"]; [localNotification setHasAction:YES]; localNotification.soundName=@"voice.aif"; if (!localNotification) return; – Muhammad Saqib Aug 22 '11 at 9:36
show 3 more comments
feedback

are you cleaning the old notifications with?

UIApplication* app = [UIApplication sharedApplication];
NSArray*  oldNotifications = [app scheduledLocalNotifications];
if ([oldNotifications count] > 0) {
    [app cancelAllLocalNotifications];
}

else you can, delete the app from the phone (maybe need a reboot too) the it should work :-)

beside that the code mentioned above should be correct. and this line localNotification.soundName=@"voice.aif"; should be enough to play custom sounds. but if you had notification tested first with no sound-file added, the default sound file (UILocalNotificationDefaultSoundName) is registered! and to re-register you have to cancel the previous notification (cancelAllLocalNotifications) or delete the app, to be able to "re"-register your notfication,

beside that, the apple doc says:

Sounds that last longer than 30 seconds are not supported. If you specify a file with a sound that plays over 30 seconds, the default sound is played instead.

hope it helps now :-)

link|improve this answer
Not relevant—question is about how to get a UILocalNotification to play with a custom sound. – yuji Feb 10 at 14:57
Huh.? Ever read the question? – Guru Feb 11 at 18:10
just edited my answers, hope it helps better now :-) – Flori Feb 13 at 8:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.