i am playing custom sound for local notification.
notification.soundName=[[NSBundle mainBundle] pathForResource:@"soundName" ofType:@"mp3"];
I am setting custom sound for local notification. When notification fire sound is playing in iPhone(IOS 7) but not playing in iPad(IOS 6.1.3). Please tell me what is wrong with code for iPad.
Note- Setting-> sound-> ringer and alerts for both device sound is zero. But it plays well in iPhone but not in iPad
Is it necessary to set alert sound for notification sound?
Thanks in advance
localNotif.soundName = [[NSBundle mainBundle] pathForResource:@"soundName" ofType:@"mp3"];
– iPatel