0

我使用 AVAudioPlayer 播放音乐文件。它在通过 iPhone 机身上的耳机或扬声器播放时效果很好。但通过蓝牙播放时不流畅。为什么?

这是我的代码:

AVAudioPlayer *newMusicPlayer = [[AVAudioPlayer alloc] initWithData:musicData error:&error];
if (!newMusicPlayer)
{
}
else
{
    [newMusicPlayer play];
}

特别感谢!

4

1 回答 1

0

This is an apple's bug on 3GS running ios5.1.1, because "Music" is not smooth too.

于 2012-06-27T06:56:16.800 回答