LoginSignup
7
3

More than 1 year has passed since last update.

iOS15のUITableViewHeaderの上部に空白ができる

Posted at

取り急ぎの自分用メモです。

UITableViewにHeaderを設定している場合、上部に空白ができていました。

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

これを使ってパディングを0にしてあげればOK。
14以下はパラメータ自体がないのでバージョンで条件分け。
パラメータを追加するなら、デフォルトはゼロにして欲しい、、、😥

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