エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
【Swift】text の変更後に UITextView を一番下までスクロールするコード - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
【Swift】text の変更後に UITextView を一番下までスクロールするコード - Qiita
class ViewController: UIViewController { @IBOutlet weak var textView: UITextView! ---- 省略 ---- ... class ViewController: UIViewController { @IBOutlet weak var textView: UITextView! ---- 省略 ---- // textView に変更を加えるメソッド 適宜必要な処理に読み替えてください func addText(_ text: String) { textView.isScrollEnabled = false textView.text = textView.text + text scrollToButtom() } func scrollToBottom() { textView.selectedRange = NSRange(location: textView.text.characters.count, length: 0) textView.isScrollEnabled = true l