Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I add sound to my notification, but it is not played.

I tried these:

notif.soundName = UILocalNotificationDefaultSoundName;

notif.soundName = @"sound.caf";

help??

share|improve this question
Is your test phone in silent mode? – Mathieu Hausherr Dec 21 '11 at 16:24
How have you created the sound? How long is it? What is the output from afinfo sound.caf? – Mats Dec 21 '11 at 20:52

1 Answer

So does your full code (sound only) look like this?

UILocalNotification *notif = [[UILocalNotification alloc] init];
notif.firedate = //Whenever
notif.soundName = UILocalNotificationDefaultSoundName;
[[UIApplication sharedApplication] scheduleLocalNotification:notif];

If your code checks out, then it must be an issue with the iPhone. Does it work in the simulator?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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