UILocalNotification 声音未播放
Posted
技术标签:
【中文标题】UILocalNotification 声音未播放【英文标题】:UILocalNotification sound not played 【发布时间】:2011-08-15 10:51:08 【问题描述】:我正在尝试在应用程序启动一分钟后安排UILocalNotification
。这是我使用的代码,
-(void)scheduleNotification
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
localNotif.timeZone = [NSTimeZone defaultTimeZone];
localNotif.fireDate = [NSDate dateWithTimeIntervalSinceNow:60];
localNotif.alertBody = @"Test";
localNotif.alertAction = @"View";
localNotif.soundName=UILocalNotificationDefaultSoundName;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
[localNotif release];
alertView 在适当的时间后显示,但没有播放声音。 我错过了什么吗?
提前致谢
编辑 我现在正在模拟器上测试它
【问题讨论】:
Play local notification default sound when displaying UIAlertView?的可能重复 你可能想看看这个:***.com/questions/23532706/… 【参考方案1】:尝试重新设置您的 Mac 声音 - 打开系统偏好设置并选择声音。在那里取消选中然后重新选中“播放用户界面音效” - 这可以解决我的类似问题。
【讨论】:
以上是关于UILocalNotification 声音未播放的主要内容,如果未能解决你的问题,请参考以下文章
如何检测 UILocalnotification 声音是不是正在播放
为啥我的 UILocalNotification 没有播放任何声音?