31
27

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.

iOS7以降、UITextViewの動きがおかしかったら【メモ】

Last updated at Posted at 2014-12-26

UITextViewで、キーボードを閉じた時に勝手にトップにスクロールされたり、最終行で改行するとおかしな位置にカーソルがずれたり、かれこれ1週間くらい悩まされていたのですが、以下のようにコードを入れたところ無事に解決しました。

※どうしてみんな困っていないのだろう。。。

swift
self.textView.layoutManager.allowsNonContiguousLayout = false
objc
self.textView.layoutManager.allowsNonContiguousLayout = NO

参考(感謝です):
http://blog.mugunthkumar.com/coding/radar-15159094-uitextview-nsattributedstring-is-hopelessly-broken-on-ios-7-3/
http://hayatomo.com/2014/09/26/1307

31
27
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
31
27

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?