2011-11-09 161 views
0

我向聲音中添加聲音,但未播放聲音。iphone不播放通知聲音

我嘗試這些:

notif.soundName = UILocalNotificationDefaultSoundName; 

notif.soundName = @"sound.caf"; 

幫助?

+0

您的測試手機處於靜音模式嗎? –

+0

你是如何創造聲音的?多久了? 「afinfo sound.caf」的輸出是什麼? – Mats

回答

0

那麼你的完整代碼(聲音只)看起來像這樣?

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

如果您的代碼檢出,那麼它一定是iPhone的問題。它在模擬器中工作嗎?