2

OS X で (ドラッグ) コピー、貼り付け、および削除操作のシステム効果音を再生する方法を知っている人はいますか? ファイルを移動するときにFinderが使用する音を意味します。それを行うための API が見つかりませんでした。それらのサウンドファイルがどこにあるか知っている人はいますか? システムアラート音(カエル、潜水艦など)しか見つかりませんでした。

4

1 に答える 1

4

SystemSoundsで利用可能です

/System/Library/Components/CoreAudio.component/Contents/Resources/SystemSounds/ 位置。

NSSound *systemSound = [[NSSound alloc] initWithContentsOfFile:@"/System/Library/Components/CoreAudio.component/Contents/Resources/SystemSounds/finder/move\ to\ trash.aif" byReference:YES];
if (systemSound) {
    [systemSound play];
}  

/System/Library/Components/CoreAudio.component/Contents/Resources/CoreAudioAUUI.bundle/Contents/Resources
于 2012-05-25T06:32:54.753 に答える