我有一个UILocalNotification
播放以下声音:
notification1.soundName = @"Alarm";
当应用程序打开时,我使用
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
在 appDelegate 中拦截用户不会注意到的警报,但不会播放声音。如何让声音播放?在进一步提到的方法中,我有一个UIAlertView
但我找不到用声音触发它的可能性。
谢谢!