我在 ipad 上有一个音乐播放器应用程序。我从服务器下载 m4a 文件并将它们保存到 doc 目录。我还使用 Core Data 来保存播放列表信息。我有超过 1000 首歌曲,而且我的桌子可以完美加载并完美播放。我可以毫无问题地播放播放列表。但是......每隔一段时间,一首歌曲不会播放。没有声音!我可以按单元格播放歌曲或转到下一首歌曲,一切都会重新开始。所以这个问题是随机的和间歇性的。卡住的从来不是同一首歌。我不能给你任何调试语句,就像我说的那样,它是如此随机和断断续续,很难复制。我想知道这是否是ARC问题。请帮忙,因为这个应用程序很快就会投入生产。
相关代码:
// setup music session
NSError *error = nil;
[[AVAudioSession sharedInstance] setDelegate: self];
[[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error: &error];
[[AVAudioSession sharedInstance] setActive: YES error: &error];
NSLog(@"error AVAudioSession:%@", [error description]);
AVAudioPlayer *player = [[AVAudioPlayer alloc] init];
NSString *fullPath = fullPath = [self.docDirPath stringByAppendingPathComponent:filename];
NSURL *musicFileURL = [[NSURL alloc] initFileURLWithPath:fullPath];
// getting song from docDir
NSData *songData = [[NSData alloc] initWithContentsOfURL:musicFileURL];
player = [player initWithData:songData error:&error];
NSLog(@"error player reg:%@", [error description]);
//NSLog(@"playing %@ at index:%d", musicFileURL, index);
self.appPlayer = player;
[self.appPlayer prepareToPlay];
[self.appPlayer setEnableRate: YES];
[self.appPlayer setDelegate: self];
[self.appPlayer play];