我在 UITableViewCell 中有一个 UIButton 连接到一个播放 AVAudio 文件的方法,如下所示:
cell.playButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
cell.playButton.tag = indexPath.row;
[cell.playButton addTarget:self action:@selector(useSelectedFile:) forControlEvents:UIControlEventTouchUpInside];
useSelectedFile 方法如下所示:
-(void) useSelectedFile:(id)sender{
int tag = [(UIButton *)sender tag];
NSDictionary *audioFileInformation = [audioCellsArray objectAtIndex:tag];
NSData *selectedAudioFile = [audioFileInformation objectForKey:@"Data"];
NSError *error;
NSString *filePath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:@"sound.caf"];
[[NSFileManager defaultManager] removeItemAtPath:filePath error:nil];
[selectedAudioFile writeToFile:filePath atomically:YES];
NSURL *file = [NSURL fileURLWithPath:filePath];
_audioPlayerForButton = [[AVAudioPlayer alloc] initWithContentsOfURL:file error:&error];
if (error)
NSLog(@"Error: %@",
[error localizedDescription]);
else
[_audioPlayerForButton play];
}
我可以记录文件并将它们保存在数据库中并可以很好地提取数据,但是我无法播放它们。使用当前代码,我得到:错误:操作无法完成。(OSStatus 错误 1954115647。)
当我尝试使用时:
_audioPlayerForButton = [[AVAudioPlayer alloc] initWithData:selectedAudioFile error:&error];
点击播放按钮时我会收到此错误:错误:操作无法完成。(OSStatus 错误 2003334207。)
检查我从模拟器写入磁盘的文件,它似乎已损坏?文件系统不会像普通的 .caf 文件那样将其显示为音频文件(带有音符的黑色),而是显示为带有 QuickTime 符号的白色小文件,QuickTime 不会播放。
我尝试在命令行上使用 macerror 状态码,但它只返回“未知错误”。
有人对如何解决此问题并播放我的文件有任何想法或提示吗?