7
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 3 years have passed since last update.

【iOS15】UITableViewのCell間に妙な隙間ができる件について

Posted at

#iOS15からUITableViewのCell間に隙間ができる
iOS15からUITableViewにHeaderを設定していると、上部に隙間ができていました。
原因はiOS15から追加されたsectionHeaderTopPaddingというプロパティが追加されたのが原因のよう、ちなみにデフォ値は-1が設定されていました。
対応策は以下のように0を設定してあげると、今まで通り表示されます。

if #available(iOS 15, *) {
    tableView.sectionHeaderTopPadding = 0.0
}

#参考
https://qiita.com/yuringo_mm/items/e86aaa80bd3ae9e35fbd

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