从请求中检索 UNNotificationRequest 声音名称
Posted
技术标签:
【中文标题】从请求中检索 UNNotificationRequest 声音名称【英文标题】:Retrieve UNNotificationRequest Sound Name from Request 【发布时间】:2020-10-28 15:33:09 【问题描述】:我设置了一个带有自定义声音的通知,如下所示:
var soundNames = ["Default", "Alert1", "Alert2", "Alert3", "Alert4", "Alert5", "Alert6", "Alert7", "Alert8", "Alert9", "Alert10"]
func addNotification(title: String, timeInt: TimeInterval, image: Data?, soundName: String?)
let content = UNMutableNotificationContent()
content.title = title
content.sound = UNNotificationSound(named: UNNotificationSoundName(rawValue: "\(soundName!).caf"))
var trigger: UNTimeIntervalNotificationTrigger
trigger = UNTimeIntervalNotificationTrigger(timeInterval: timeInt, repeats: true)
// choose a random identifier
let request = UNNotificationRequest(identifier: UUID().uuidString, content: content, trigger: trigger)
// add our notification request
UNUserNotificationCenter.current().add(request)
saveConceptCard(id: request.identifier, title: title, image: image)
现在我想获取从 id 检索特定通知请求时使用的自定义声音的名称
var notification: UNNotificationRequest
我尝试这样获取声音名称:
let sound = notification.content.sound!.debugDescription
但这会返回:
<UNNotificationSound: 0x2822419d0>
有没有办法从该代码中获取文件名?
【问题讨论】:
据我所知没有 API。在userInfo
字典中传递名称怎么样。
@vadian 是这么想的,我没有太多变量,所以我觉得不需要创建一个结构来存储用户默认值,但我现在已经解决了,谢谢。
【参考方案1】:
您必须使用 AVFoundation 框架将文本转换为语音
当您推送通知时,您还必须推送 AVSpeechSynthesizer
你是这样设置的:
let utterance = AVSpeechUtterance(string: "Hello world")
utterance.voice = AVSpeechSynthesisVoice(language: "en-GB")
utterance.rate = 0.1
let synthesizer = AVSpeechSynthesizer()
这是语音操作:
synthesizer.speak(utterance)
【讨论】:
不确定这个答案与我的问题有什么关系。以上是关于从请求中检索 UNNotificationRequest 声音名称的主要内容,如果未能解决你的问题,请参考以下文章