我们有一个网络服务功能,我们将音频文件上传到该功能以保存在服务器中。我用来创建音频文件内容的数据缓冲区(传递给 Web 服务)的代码是:
NSURL *soundFileURL = [[NSURL alloc] initFileURLWithPath:fnWithSlash];
audioData = [NSData dataWithContentsOfURL:soundFileURL];
NSLog(@"audiodata%d",audioData.length);
这里 fnWithSlash 包含文件的完整路径。但是 audioData.length 始终为 0。我错过了什么?
提前感谢您的回复。