的列表
我正在尝试创建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();