---
title: "speechSynthesizer(_:didContinue:)"
framework: avfaudio
role: symbol
role_heading: Instance Method
path: "avfaudio/avspeechsynthesizerdelegate/speechsynthesizer(_:didcontinue:)"
---

# speechSynthesizer(_:didContinue:)

Tells the delegate when the synthesizer resumes speaking an utterance after pausing.

## Declaration

```swift
optional func speechSynthesizer(_ synthesizer: AVSpeechSynthesizer, didContinue utterance: AVSpeechUtterance)
```

## Parameters

- `synthesizer`: The speech synthesizer that resumes speaking the utterance.
- `utterance`: The utterance that the speech synthesizer resumes speaking.

## Discussion

Discussion The system only calls this method if a speech synthesizer pauses speaking and the system calls its pauseSpeaking(at:) method. The system doesn’t call this method if the synthesizer pauses while in a delay between utterances.

## See Also

### Responding to speech synthesis events

- [speechSynthesizer(_:didStart:)](avfaudio/avspeechsynthesizerdelegate/speechsynthesizer(_:didstart:).md)
- [speechSynthesizer(_:willSpeakRangeOfSpeechString:utterance:)](avfaudio/avspeechsynthesizerdelegate/speechsynthesizer(_:willspeakrangeofspeechstring:utterance:).md)
- [speechSynthesizer(_:willSpeak:utterance:)](avfaudio/avspeechsynthesizerdelegate/speechsynthesizer(_:willspeak:utterance:).md)
- [speechSynthesizer(_:didPause:)](avfaudio/avspeechsynthesizerdelegate/speechsynthesizer(_:didpause:).md)
- [speechSynthesizer(_:didFinish:)](avfaudio/avspeechsynthesizerdelegate/speechsynthesizer(_:didfinish:).md)
- [speechSynthesizer(_:didCancel:)](avfaudio/avspeechsynthesizerdelegate/speechsynthesizer(_:didcancel:).md)
