如何获取iOS中系统设置中列出的所有可用声音文件

问题描述 投票:0回答:1

我想显示一个选择器视图或所有可用手机声音的列表。这样用户就可以改变app的声音警报(它不会影响系统声音文件)。

应用程序功能之一将允许用户仅在应用程序中播放选定的声音。

如果有任何方法可以告诉我。

谢谢!任何帮助将不胜感激。

ios iphone swift audio
1个回答
0
投票
  1. 您可以使用系统声音服务播放短(30秒或更短)的声音。界面不提供电平,定位,循环或定时控制,并且不支持同时播放:您一次只能播放一个声音。链接苹果系统声音服务https://developer.apple.com/documentation/audiotoolbox/system_sound_services // import this import AVFoundation // create a sound ID, in this case its the tweet sound. let systemSoundID: SystemSoundID = 1016 // to play sound AudioServicesPlaySystemSound (systemSoundID)
© www.soinside.com 2019 - 2024. All rights reserved.