我正在尝试在应用程序启动后一分钟安排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,但没有播放声音。 我错过了什么吗?
提前致谢
修改 我现在正在模拟器上测试它
答案 0 :(得分:0)
尝试重新设置Mac声音 - 打开“系统偏好设置”并选择“声音”。在那里取消选中然后重新检查'播放用户界面音效' - 这有助于解决我的类似问题。