我正在尝试创建iOS设备中提供的所有可用警报声音的列表。 在Xamarin的网站上,只有一个例子:
https://developer.xamarin.com/recipes/ios/media/sound/syssound-example/
我想知道可以通过Apple设备访问哪些其他声音。
编辑: 如何获取内置警报声音列表
答案 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();