LoginSignup
7
3

More than 1 year has 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
}

参考

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