AVAudioPlayer の再生が停止したときの UIImageView を知り、変更したい。私はそれに取り組んでいますが、まだこれを理解できませんでした。何か方法はありますか?私のコードは以下です
if ([[NSFileManager defaultManager] fileExistsAtPath:ttsOutWav]) {
audioPath1 = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL URLWithString:ttsOutWav] error:&error];
if (!error) {
[audioPath1 play];
NSLog(@"should be played");
}
else {
NSLog(@"Error in creating audio player:%@",[error description]);
}
}
else{NSLog(@"such file doesnt exist");}