1
1

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.

UITextViewのテキストの位置がズレる

Posted at

ライセンス表示画面など長い文章をUITextViewで表示されると、初期表示位置がなぜか真ん中くらいだったり微妙にズレたりすることがある。
iPhone7やiPhoneXで大丈夫でも同じOSバージョンでiPad miniやiPhoneSEでズレる場合がある。

解決方法

    override func viewDidLayoutSubviews() {
        super.viewDidLayoutSubviews()
        
        self.textView.setContentOffset(CGPoint.zero, animated: false)
    }

いろいろ試したけどとりあえずこれで解決。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?