• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - iPhone SDK : Open Default Message tones list

[复制链接]
菜鸟教程小白 发表于 2022-12-13 02:29:15 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

在我的应用程序中,我想为即将到来的消息设置设置默认系统消息音。我怎样才能打开默认设备 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-推荐答案


查看此链接 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/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap