Can I find out when AVAudioPlayerready after a call prepareToPlay?
If not, is there another class that provides this functionality?
I would like to implement something like this:
- (void) prepare {
[audioPlayer prepareToPlay];
// Update UI to indicate that the audio is being prepared
}
- (void) onAudioReady {
// Update UI to indicate that the audio is ready
}
source
share