在我的应用程序中,我想为即将到来的消息设置设置默认系统消息音。我怎样才能打开默认设备 alertTones 列表。
我尝试了以下代码,但它没有返回任何声音。
NSFileManager *fileManager = [[NSFileManager alloc] init];
NSURL *directoryURL = [NSURL URLWithString"/System/Library/Audio/UISounds"];
NSArray *keys = [NSArray arrayWithObject:NSURLIsDirectoryKey];
NSDirectoryEnumerator *enumerator = [fileManager
enumeratorAtURL:directoryURL
includingPropertiesForKeys:keys
options:0
errorHandler:^(NSURL *url, NSError *error) {
// Handle the error.
// Return YES if the enumeration should continue after the error.
return YES;
}];
for (NSURL *url in enumerator) {
NSError *error;
NSNumber *isDirectory = nil;
if (! [url getResourceValue:&isDirectory forKey:NSURLIsDirectoryKey error:&error]) {
// handle error
}
else if (! [isDirectory boolValue]) {
[audioFileList addObject:url];
}
}
请帮忙。
Best Answer-推荐答案 strong>
查看此链接 https://github.com/TUNER88/iOSSystemSoundsLibrary .我想您是否在使用我在 iPhone 中测试过的这个引用代码及其工作。我认为您正在 iPhone 模拟器中进行测试。它在模拟器中不起作用。所以,在设备中测试它的工作正常
关于ios - iPhone SDK : Open Default Message tones list,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/26272352/
|