サウンドファイルを再生するためのiPhoneアプリを開発しています。私の展開目標は4.0です。IPhone Simulator 4.3で再生しようとすると、サウンド/ボリュームなしで再生されます。しかし、Simulator5.1では問題なく再生されます。
私のコード:
NSString *fileName=[NSString stringWithFormat:@"book%i_chapter_%i",book_number,chapter_number];
NSString *path=[[NSBundle mainBundle] pathForResource:fileName ofType:@"mp3" inDirectory:nil];
NSURL *url = [NSURL fileURLWithPath:path];
NSError *error;
audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
if(error)
{
NSLog(@"Error in audio Player: %@",[error localizedDescription]);
}
else
{
[audioPlayer prepareToPlay];
//audioPlayer.delegate=self;
[audioPlayer setVolume:20.0];
[audioSlider setValue:0.0];
[audioSlider setMaximumValue:[audioPlayer duration]];
[audioPlayer play];
}
これを修正するのを手伝ってください。ありがとう