gpt4 book ai didi

ios - iPhone SDK : Open Default Message tones list

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:20:11 26 4
gpt4 key购买 nike

在我的应用程序中,我想为即将到来的消息设置设置默认系统消息音。如何打开默认设备 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];
}
}

请帮助。

最佳答案

检查此链接 https://github.com/TUNER88/iOSSystemSoundsLibrary .我认为您是否在使用我在 iPhone 中测试过的此引用代码及其工作情况。我认为您是在 iPhone 模拟器中进行测试。它在模拟器中不起作用。因此,在设备中测试其工作正常 check the attach image which shows the list of the system sound

关于ios - iPhone SDK : Open Default Message tones list,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26272352/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com