Xamarin IOS如何获取所有可用的Syssound列表



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

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

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

编辑:我如何获得建筑警报声音

的列表

在此处找到答案:

https://www.theiphonewiki.com/wiki//system/library/audio/uisounds

例如:

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

相关内容

  • 没有找到相关文章

最新更新