【发布时间】:2025-12-04 17:35:01
【问题描述】:
在 iOS 中,我可以使用以下代码播放系统声音:
// import this
import AVFoundation
// create a sound ID, in this case its the tweet sound.
let systemSoundID: SystemSoundID = 1016
// to play sound
AudioServicesPlaySystemSound (systemSoundID)
有这个链接 https://github.com/TUNER88/iOSSystemSoundsLibrary 指向 iOS 中可用系统声音的列表
我的问题是 tvOS 中是否提供系统声音?以及哪些可用。
【问题讨论】: