Почему прокрутка UITextView не работает на tvOS? - PullRequest
1 голос
/ 23 сентября 2019

У меня есть UITextView:

    private let descriptionView: UITextView = {
       let view = UITextView()
       view.translatesAutoresizingMaskIntoConstraints = false
       view.bounces = true
       view.textColor = UIColor.white
       view.font = UIFont(name: Fonts.regular, size: 28)

       view.isSelectable = true
       view.isUserInteractionEnabled = true
       view.panGestureRecognizer.allowedPressTypes = [NSNumber(value: UITouch.TouchType.indirect.rawValue)]
       view.showsVerticalScrollIndicator = true
       return view
    }()

Добавлено в другом виде

    addSubview(descriptionView)
    addConstraints([
        descriptionView.leadingAnchor.constraint(equalTo: title.leadingAnchor),
        descriptionView.topAnchor.constraint(equalTo: ratings.bottomAnchor, constant: 60),
        descriptionView.trailingAnchor.constraint(equalTo: trailingAnchor, constant: -80),
        descriptionView.bottomAnchor.constraint(equalTo: bottomAnchor)
    ])

isSelectable = true,

view.isUserInteractionEnabled = true.

Вид фокусируется отлично, но не прокручивается.

Высота содержимого> высота текстового обзора

enter image description here

Подобные вопросы не помогли

...