4

好的。我一直在寻找一种巧妙的方法来列出使用 [NSSound soundNamed: ] 播放的系统声音 - 在我看来,API 似乎没有可用声音的列表。

我还用谷歌搜索了这个,发现了一些相当古老且部分已被弃用的资源。如果应用程序应该有一个声音选择器- 获取系统提供的声音列表的最佳方法是什么?

4

2 回答 2

10

这是我的实现。

NSSound (systemSounds.h):

#import <AppKit/AppKit.h>

@interface NSSound (systemSounds)

+ (NSArray *) systemSounds;

@end

NSSound (systemSounds.m):

#import "NSSound (systemSounds).h"

@implementation NSSound (systemSounds)

static NSArray *systemSounds = nil;

+ (NSArray *) systemSounds
{
    if ( !systemSounds )
    {
        NSMutableArray *returnArr = [[NSMutableArray alloc] init];
        NSEnumerator *librarySources = [NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSAllDomainsMask, YES) objectEnumerator];
        NSString *sourcePath;

        while ( sourcePath = [librarySources nextObject] )
        {
            NSEnumerator *soundSource = [[NSFileManager defaultManager] enumeratorAtPath: [sourcePath stringByAppendingPathComponent: @"Sounds"]];
            NSString *soundFile;
            while ( soundFile = [soundSource nextObject] )
                if ( [NSSound soundNamed: [soundFile stringByDeletingPathExtension]] )
                    [returnArr addObject: [soundFile stringByDeletingPathExtension]];           
        }

        systemSounds = [[NSArray alloc] initWithArray: [returnArr sortedArrayUsingSelector:@selector(compare:)]];
        [returnArr release];
    }
    return systemSounds;
}

@end

任何人都可以免费使用和使用,如果你增强它,请分享:)

于 2012-06-08T12:46:02.377 回答
4

使用iOSSystemSoundsLibrary检查所有系统声音

于 2013-10-12T22:40:15.713 回答