1

我想知道是否有办法检索用户的铃声或声音。我对他们的音乐播放列表不感兴趣,但喜欢可用于 uilocalnotifications 的 30 秒音频剪辑。有谁知道如何做到这一点?谢谢!

4

1 回答 1

2

看到这个答案。 如何在ios中以编程方式获取系统铃声?

如果您仍想触发音频通知,这篇文章应该可以帮助您入门。看来您可以为 soundName 属性分配一个文件名,或者传递UILocalNotificationDefaultSoundName(我猜是)用户选择的通知声音。

- (void)scheduleNotificationWithItem:(ToDoItem *)item interval:(int)minutesBefore {
    UILocalNotification *localNotif = [[UILocalNotification alloc] init];
    localNotif.soundName = UILocalNotificationDefaultSoundName;
    ...
    [localNotif release];
}
于 2012-07-13T00:49:40.663 回答