TextView is inside the scrollView
and I've disabled the scroll for textView
. But My textView
doesn't get the full content for some reason and the scroll doesn't happen">
Мой TextView
находится внутри scrollView
, и я отключил прокрутку для textView
. Но My textView
по какой-то причине не получает полный контент, и прокрутка не происходит.
Я приравнял высоту моего textView
к самому верхнему виду. Ширина textView
равна ширине scrollView
.
Также я добавил этот фрагмент кода в мой ViewDidLoad()
: -
messageTextView.setTheme(.noTheme)
messageTextView.delegate = self
//messageTextView.textContainerInset = UIEdgeInsets.zero
messageTextView.textContainerInset = UIEdgeInsets(top: 10, left: 0, bottom: 10, right: 0)
messageTextView.textContainer.lineFragmentPadding = 0
messageTextView.isScrollEnabled = false
messageTextView.attributedText = attributedMessageWithLink()