Xamarin iOS如何获得所有可用的SysSound列表?

时间:2017-03-13 14:32:48

标签: ios xamarin xamarin.ios system-sounds

我正在尝试创建iOS设备中提供的所有可用警报声音的列表。 在Xamarin的网站上,只有一个例子:

https://developer.xamarin.com/recipes/ios/media/sound/syssound-example/

我想知道可以通过Apple设备访问哪些其他声音。

编辑: 如何获取内置警报声音列表

1 个答案:

答案 0 :(得分:0)

在这里找到答案:

https://www.theiphonewiki.com/wiki//System/Library/Audio/UISounds

e.g:

string NotificationSoundPath = @"/System/Library/Audio/UISounds/sms-received6.caf";
SystemSound notificationSound = SystemSound.FromFile(NotificationSoundPath);
notificationSound.AddSystemSoundCompletion(SystemSound.Vibrate.PlaySystemSound);
notificationSound.PlaySystemSound();