AVSpeechSynthesizer on iOS14.5.1

I have developed codes to generate PCM data by AVSpeechSynthesizer. 
This codes worked very well. But callback is not called on iOS14.5.1.
What should I do ?

speechSynth = [[AVSpeechSynthesizer alloc] init];
speechSynth
.delegate = (id)self;
AVSpeechUtterance *utterance = [AVSpeechUtterance speechUtteranceWithString:text];
utterance.rate = voiceRate;
utterance.pitchMultiplier = voicePitch
;
utterance.voice = [AVSpeechSynthesisVoice voiceWithIdentifier:speaker];
[speechSynth
writeUtterance:utterance toBufferCallback:^(AVAudioBuffer *buffer ) {
AVAudioPCMBuffer *pcmBuffer = (AVAudioPCMBuffer *)buffer;.....
I'm running into the same issue of the callback not being called on swift.

I am also having the same issue where the callback is no longer called in Obj-C.

AVSpeechSynthesizer on iOS14.5.1
 
 
Q