我正在使用audioQueueService进行开发 但停止功能“CFURLCreateFromFileSystemRepresentation” 这是我的代码,但总是返回nil。
var path = Bundle.main.path(forResource: "123", ofType: "mp3")!
var xyz = UInt8(path.utf8CString[0])
let audioFileURL = CFURLCreateFromFileSystemRepresentation(kCFAllocatorDefault,&xyz, path.characters.count, false)
print(audioFileURL)
我尝试过post path指向func但是没有工作? 有谁可以帮助我?
答案 0 :(得分:0)
let url = Bundle.main.url(forResource: "123", withExtension: "mp3")!
let audioFileURL = url as CFURL