I am trying to build a Hangman game to play with my daughter since we both enjoy the game and playing together, but I have found issues regarding the size of the LiveLayout on the transcript screen
I have implemented the method contentSizeThatFits
override func contentSizeThatFits(_ size: CGSize) -> CGSize {
CGSize(width: 432, height: 700)
}
But even after implementing the size of the message bubble on transcript mode is not changing to adopt the size I am providing.
What should I do in this case? or how can I make the bubble to adopt a better size?
I tried to attach an image without any success.