I'm a beginner in MVC. I'm creating a logic to convert text to voice by MVC pattern. I have speakerController, speakerView, speakerModel. The controller transfers text from the model to the view to be spoken. Also, on press the same button, the pronunciation stops.
But I also have another controller that is responsible for the page logic.
If the user presses the back button, then the pronunciation should stop. What is the best way to implement this?
Will it be correct to call a speakerController from another controller or connections between controllers are not allowed and need to be done in another way?
Thank you