2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

tvOSでテキストスクロール

2
Posted at

tvOSでテキストスクロール

tvOSのUITextViewでテキストをスクロールしたくてハマったのでメモ。

iOSと違って、そのままではリモコンスワイプではスクロールできない。

いろいろ調べたが、フォーカスが当たるようにして、タッチを認識するようにする必要がある。

結論として一番簡単な方法は、対象のtextViewに対して

swift
        textView.panGestureRecognizer.allowedTouchTypes = [UITouchType.Indirect.rawValue]
        textView.selectable = true

をコントローラのviewDidLoadで設定すればok。
selectableはstoryboardのインスペクタの設定ではうまく有効にならないらしい(- -)。

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?