Skip to content

Instantly share code, notes, and snippets.

@fredriccliver
Created July 19, 2021 09:54
Show Gist options
  • Save fredriccliver/45abda38f6c87b009d4b57a4ff372593 to your computer and use it in GitHub Desktop.
Save fredriccliver/45abda38f6c87b009d4b57a4ff372593 to your computer and use it in GitHub Desktop.
// ...
class MyVC: UIViewController{
// ...
override func viewDidLoad() {
titleTextView.frame.size.height = titleTextView.sizeThatFits(titleTextView.frame.size).height
titleTextViewHeight.constant = titleTextView.contentSize.height
descriptionTextView.frame.size.height = descriptionTextView.sizeThatFits(descriptionTextView.frame.size).height
descriptionTextViewHeight.constant = descriptionTextView.contentSize.height
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment